* Attach a callback that will be executed whenever the component's state is finalized * * @param callback * @public
(callback: () => void)
| 1138 | * @public |
| 1139 | */ |
| 1140 | attachComponentStateFinalized(callback: () => void): void { |
| 1141 | this._componentStateFinalizedEventProvider.attachEvent("componentStateFinalized", callback); |
| 1142 | } |
| 1143 | |
| 1144 | /** |
| 1145 | * Detach the callback that is executed whenever the component's state is finalized |
nothing calls this directly
no test coverage detected
searching dependent graphs…