1
0
Fork 0

Use the proper L1 and L2 emojis

This commit is contained in:
Cadence Ember 2023-10-08 00:00:34 +13:00
parent 3ef569d855
commit af274ede53
3 changed files with 10 additions and 3 deletions

1
db/orm-defs.d.ts vendored
View file

@ -86,6 +86,7 @@ export type Models = {
export type Prepared<Row> = {
pluck: () => Prepared<Row[keyof Row]>
safeIntegers: () => Prepared<{[K in keyof Row]: Row[K] extends number ? BigInt : Row[K]}>
raw: () => Prepared<Row[keyof Row][]>
all: (..._: any[]) => Row[]
get: (..._: any[]) => Row | null
}