UNPKG

@tanstack/db

Version:

A reactive client store for building super fast apps on sync

16 lines (13 loc) 448 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 }