Skip to content

Commit 35aadb3

Browse files
author
devgioele
authored
Merge pull request #3 from aboutbits/fix-strict-omit
Fix strict omit
2 parents faf1b08 + 0b26966 commit 35aadb3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/types/strict-omit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export type StrictOmit<
2-
Type extends Record<PropertyKey, unknown>,
2+
Type,
33
Keys extends keyof Type,
44
> = Type extends ArrayLike<unknown> ? never : Omit<Type, Keys>

0 commit comments

Comments
 (0)