UNPKG

@tanstack/db

Version:

A reactive client store for building super fast apps on sync

17 lines (14 loc) 471 B
import type { CollectionConfigBuilder } from './collection-config-builder.js' /** * Symbol for accessing internal utilities that should not be part of the public API */ export const LIVE_QUERY_INTERNAL = Symbol(`liveQueryInternal`) /** * Internal utilities for live queries, accessible via Symbol */ export type LiveQueryInternalUtils = { getBuilder: () => CollectionConfigBuilder<any, any> hasCustomGetKey: boolean hasJoins: boolean hasDistinct: boolean }