* Triggers a change event by emitting on the `changes` EventEmitter.
()
| 163 | * Triggers a change event by emitting on the `changes` {@link EventEmitter}. |
| 164 | */ |
| 165 | notifyOnChanges(): void { |
| 166 | if (this._changes !== undefined && (this._changesDetected || !this._emitDistinctChangesOnly)) |
| 167 | this._changes.next(this); |
| 168 | } |
| 169 | |
| 170 | /** @internal */ |
| 171 | onDirty(cb: () => void) { |
no test coverage detected