(value: any)
| 421 | } |
| 422 | |
| 423 | export function isQueryKey(value: any): value is QueryKey { |
| 424 | return typeof value === 'string' || Array.isArray(value) |
| 425 | } |
| 426 | |
| 427 | export function isError(value: any): value is Error { |
| 428 | return value instanceof Error |
no outgoing calls
no test coverage detected
searching dependent graphs…