(
_instance: Instance,
_updatePayload: any,
_type: string,
_oldProps: Props,
_newProps: Props
)
| 166 | |
| 167 | commitMount(_instance: Instance, _type: Type, _newProps: Props): void { |
| 168 | log.debug("commitMount"); |
| 169 | }, |
| 170 | |
| 171 | scheduleTimeout(_handler: (...args: any[]) => void, _timeout: number): TimeoutHandle | NoTimeout { |
| 172 | log.debug("scheduleTimeout"); |
| 173 | }, |
| 174 | |
| 175 | cancelTimeout(_handle: TimeoutHandle | NoTimeout): void { |
| 176 | log.debug("cancelTimeout"); |
| 177 | }, |
| 178 | |
| 179 | preparePortalMount(_containerInfo: Container): void { |
nothing calls this directly
no outgoing calls
no test coverage detected