dataModel.d.ts 198 B

123456
  1. // Generated by briven cli. Do not edit by hand.
  2. export type Tables = Record<string, never>;
  3. export type Doc<T extends keyof Tables> = Tables[T];
  4. export type Id<_T extends keyof Tables> = string;