import { DocumentTree } from "../../result-tree/classes/document/document-tree"; import { SchemaResolver } from "../../schema-resolver/schema-resolver"; /** * Get value in dataset store config */ export declare type GetStoreConfig = { /** * Function that filters the store schema fields */ where?: GetStoreWhere; }; /** * Function that filters the store schema fields */ export declare type GetStoreWhere = (fields: T) => boolean | Promise; export declare type GetStoreValueConfig = GetStoreConfig & { omitDocument?: DocumentTree; omitResolver: SchemaResolver; };