Skip to content

Commit c3aea0d

Browse files
committed
chore: use direct replacement instead of MergeDeep
1 parent 8b7f241 commit c3aea0d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/issue-1354-d.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,27 @@ export type Database = {
1010
foo: {
1111
Row: {
1212
created_at: string | null
13-
bar: Json
13+
bar: Custom
1414
id: string
15-
baz: Json
15+
baz: Custom
1616
game_id: string
1717
updated_at: string | null
1818
user_id: string | null
1919
}
2020
Insert: {
2121
created_at?: string | null
22-
bar: Json
22+
bar: Custom
2323
id?: string
24-
baz: Json
24+
baz: Custom
2525
game_id: string
2626
updated_at?: string | null
2727
user_id?: string | null
2828
}
2929
Update: {
3030
created_at?: string | null
31-
bar?: Json
31+
bar?: Custom
3232
id?: string
33-
baz?: Json
33+
baz?: Custom
3434
game_id?: string
3535
updated_at?: string | null
3636
user_id?: string | null

0 commit comments

Comments
 (0)