Defined in: packages/query-db-collection/src/global.ts:30
Base interface for Query Collection meta properties. Users can extend this interface to add their own custom properties while preserving loadSubsetOptions.
declare module "@tanstack/query-db-collection" {
interface QueryCollectionMeta {
myCustomProperty: string
userId?: number
}
}Record<string, unknown>
[key: string]: unknownoptional loadSubsetOptions: LoadSubsetOptions;Defined in: packages/query-db-collection/src/global.ts:31