// @ts-nocheck import type { storIndexdDb } from "./constants"; export declare namespace Models { type StorType = Partial<(typeof storIndexdDb)>; interface PendingOperation { engine: StorgeEngine; id: string; isDone: boolean; } type StorgeEngine = 'localstorage' | 'indexeddb'; }