We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3eafa2f commit e5981caCopy full SHA for e5981ca
1 file changed
packages/std/src/merge/index.ts
@@ -20,7 +20,8 @@ export const merge = <T1 extends object, T2 extends Partial<T1> = Partial<T1>>(
20
continue
21
}
22
23
- // @ts-expect-error: Type 'T' is generic and can only be indexed for reading.
+ // eslint-disable-next-line ts/ban-ts-comment
24
+ // @ts-ignore: Type 'T' is generic and can only be indexed for reading.
25
merged[key] = value as unknown
26
27
0 commit comments