(obj: any)
| 30 | } |
| 31 | |
| 32 | export const isBridgeMethod = (obj: any): obj is BridgeMethod<any, any, any, any, any> => |
| 33 | typeof obj === 'object' && obj.isBridgeMethodObject === true; |
| 34 | |
| 35 | export const method = < |
| 36 | BHGet extends BridgeHandler | null = null, |
no outgoing calls
no test coverage detected