UNPKG

@bitblit/ratchet-aws

Version:

Common tools for use with AWS browser and node

6 lines (5 loc) 209 B
import { PrototypeDaoDb } from './prototype-dao-db.js'; export interface PrototypeDaoProvider<T> { storeDatabase(db: PrototypeDaoDb<T>): Promise<boolean>; loadDatabase(): Promise<PrototypeDaoDb<T>>; }