/** * The index direction (1 for ascending, -1 for descending) */ export type IndexDirection = -1 | 1; /** * Description of index(es) to be created on a store */ export interface IndexDescription { /** * The key(s) to index */ key: Record; /** * Is the indexed value an array */ multiEntry?: boolean; /** * The name of the index */ name?: string; /** * If true, the index must enforce uniqueness on the key */ unique?: boolean; } export declare const IndexSeparator = "-"; /** * Given an index description, this will build the index * name in standard form * @param index The index description * @returns The index name in standard form */ export declare const buildStandardIndexName: (index: IndexDescription) => string; //# sourceMappingURL=IndexDescription.d.ts.map