forked from cadence/out-of-your-element
Remove deep-equal dependency
This commit is contained in:
parent
a190e690b1
commit
cc9e1de49e
7 changed files with 179 additions and 120 deletions
2
db/orm-defs.d.ts
vendored
2
db/orm-defs.d.ts
vendored
|
@ -100,7 +100,7 @@ export type Prepared<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
|
||||
get: (..._: any[]) => Row | null | undefined
|
||||
}
|
||||
|
||||
export type AllKeys<U> = U extends any ? keyof U : never
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue