blob: 789ac0e0bb74a62c14e409a31f7299f27c4597d6 [file] [log] [blame]
Emily Markova7b786402024-01-24 20:05:24 -08001import Dexie, {Table} from 'dexie';
2
3export interface MatchListData {
4 id?: number;
5 data: Uint8Array;
6}
7
8export class AppDB extends Dexie {
9 matchListData!: Table<MatchListData, number>;
10
11 constructor() {
12 super('ngdexieliveQuery');
13 this.version(1).stores({
14 matchListData: 'id,data',
15 });
16 }
17}
18export const db = new AppDB();