* Emit a hook that was previously registered via `on()`. * * (Generic method signature to allow for custom React Native Client events.)
(hook: string, ...rest: unknown[])
| 218 | * (Generic method signature to allow for custom React Native Client events.) |
| 219 | */ |
| 220 | public emit(hook: string, ...rest: unknown[]): void { |
| 221 | // @ts-expect-error emit from the base class doesn't support generic types |
| 222 | super.emit(hook, ...rest); |
| 223 | } |
| 224 | |
| 225 | /** |
| 226 | * Starts native client with dsn and options |
no outgoing calls
no test coverage detected