import { CollectionItem, GraphicsStorage } from "@/models/CollectionModels"; export const collectionStorage = { chunkCount: storage.defineItem("sync:chunkCount", { fallback: 0 }), syncLastUpdated: storage.defineItem("sync:lastUpdated", { fallback: 0 }), localLastUpdated: storage.defineItem("local:lastUpdated", { fallback: 0 }), localCollections: storage.defineItem("local:collections", { fallback: [] }), count: storage.defineItem("local:count", { fallback: 0 }), graphics: storage.defineItem("local:graphics", { fallback: {} }), disableCloud: storage.defineItem("sync:disableCloud", { fallback: false }), maxChunkCount: 12 };