/* * https://github.com/morethanwords/tweb * Copyright (C) 2019-2021 Eduard Kuzmenko * https://github.com/morethanwords/tweb/blob/master/LICENSE */ import { IDBStore } from "../../lib/idb"; export type DatabaseStore = Omit & {name: StoreName}; export type Database = { name: string, version: number, stores: DatabaseStore[] };