* Type guard to check if utils object has setWindow method (LiveQueryCollectionUtils)
( utils: unknown, )
| 15 | * Type guard to check if utils object has setWindow method (LiveQueryCollectionUtils) |
| 16 | */ |
| 17 | function isLiveQueryCollectionUtils( |
| 18 | utils: unknown, |
| 19 | ): utils is LiveQueryCollectionUtils { |
| 20 | return typeof (utils as any).setWindow === `function` |
| 21 | } |
| 22 | |
| 23 | export type UseLiveInfiniteQueryConfig<TContext extends Context> = { |
| 24 | pageSize?: number |
no outgoing calls
no test coverage detected
searching dependent graphs…