| 38 | * @property isCleanedUp - True when query has been cleaned up |
| 39 | */ |
| 40 | export interface UseLiveQueryReturn<TContext extends Context> { |
| 41 | state: ComputedRef<Map<string | number, GetResult<TContext>>> |
| 42 | data: ComputedRef<InferResultType<TContext>> |
| 43 | collection: ComputedRef<Collection<GetResult<TContext>, string | number, {}>> |
| 44 | status: ComputedRef<CollectionStatus> |
| 45 | isLoading: ComputedRef<boolean> |
| 46 | isReady: ComputedRef<boolean> |
| 47 | isIdle: ComputedRef<boolean> |
| 48 | isError: ComputedRef<boolean> |
| 49 | isCleanedUp: ComputedRef<boolean> |
| 50 | } |
| 51 | |
| 52 | export interface UseLiveQueryReturnWithCollection< |
| 53 | T extends object, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…