Skip to content

Commit

Permalink
feat: add build output file
Browse files Browse the repository at this point in the history
  • Loading branch information
WhyAsh5114 committed Oct 22, 2024
1 parent c086956 commit 9e7df73
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/usage/types/prisma-idb-types.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import type { DBSchema } from "idb";

export interface PrismaIDBSchema extends DBSchema {
user: {
key: number;
value: {
id: number;
email: string;
name: string;
};
};
}

0 comments on commit 9e7df73

Please sign in to comment.