import { ItemsMap, ItemsMapParams } from './ItemsMap'; export type OnUpdate = (newItemsMap: ItemsMap) => void; export interface ModificationOptions { reset?: boolean; on?: 'load' | 'patch'; } export interface ItemsStorageParams { items?: TItem[]; params: ItemsMapParams; } //# sourceMappingURL=ItemsStorage.d.ts.map