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