(instance: Instance, _type: Type, _newProps: Props)
| 185 | }, |
| 186 | |
| 187 | commitMount(instance: Instance, _type: Type, _newProps: Props): void { |
| 188 | log.debug("commitMount"); |
| 189 | instance.commitMount(); |
| 190 | }, |
| 191 | |
| 192 | scheduleTimeout(handler: (...args: any[]) => void, timeout: number): TimeoutHandle | NoTimeout { |
| 193 | log.debug("scheduleTimeout"); |
nothing calls this directly
no test coverage detected