UNPKG

@hollax/dexie-orm

Version:
8 lines (7 loc) 287 B
import { Model } from "./Model"; import { DexieModelStatic } from "./types"; /** * @param {Dexie} db * @param {Object} db Key value pair table name key and model class as value */ export declare const setup: (db: any, models: ((new () => Model) & DexieModelStatic)[]) => void;