Combined stream of all of the child chips' destroy events.
()
| 71 | |
| 72 | /** Combined stream of all of the child chips' destroy events. */ |
| 73 | get chipDestroyedChanges(): Observable<MatChipEvent> { |
| 74 | return this._getChipStream(chip => chip.destroyed); |
| 75 | } |
| 76 | |
| 77 | /** Combined stream of all of the child chips' remove events. */ |
| 78 | get chipRemovedChanges(): Observable<MatChipEvent> { |
nothing calls this directly
no test coverage detected