(type: string, params: LogObject)
| 23 | |
| 24 | @autobind |
| 25 | private log(type: string, params: LogObject): void { |
| 26 | if (this.parent) { |
| 27 | this.parent.log(type, params); |
| 28 | } else { |
| 29 | if (this.opts.log) this.opts.log(type, params); |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | @autobind |
| 34 | private onUpdated(name: string, value: Value): void { |