( key: string | number | symbol, object: object )
| 156 | } |
| 157 | |
| 158 | export function isValidKey( |
| 159 | key: string | number | symbol, |
| 160 | object: object |
| 161 | ): key is keyof typeof object { |
| 162 | return key in object |
| 163 | } |
nothing calls this directly
no outgoing calls
no test coverage detected