/// import { StoreScalarValue } from './value'; export type StoreDocument = { [key in string]?: StoreScalarValue; }; export type StoreListOffset = string | number | Buffer; export interface StoreList extends Array { nextOffset?: StoreListOffset | null; } export type StoreSelect = Record; //# sourceMappingURL=document.d.ts.map