/** * svelte-idb — Schema Manager * * Translates the declarative StoreConfig schema into imperative * IndexedDB `onupgradeneeded` operations. */ import type { DBSchema, DatabaseConfig } from './types.js'; /** * Apply the schema definition inside an `onupgradeneeded` handler. * Creates or updates object stores and their indexes. */ export declare function applySchema(db: IDBDatabase, transaction: IDBTransaction, config: DatabaseConfig): void;