There was an error while loading. Please reload this page.
2 parents faf1b08 + 0b26966 commit 35aadb3Copy full SHA for 35aadb3
1 file changed
src/types/strict-omit.ts
@@ -1,4 +1,4 @@
1
export type StrictOmit<
2
- Type extends Record<PropertyKey, unknown>,
+ Type,
3
Keys extends keyof Type,
4
> = Type extends ArrayLike<unknown> ? never : Omit<Type, Keys>
0 commit comments