Skip to content

Commit

Permalink
fix(types): remove unused Without type (#3694)
Browse files Browse the repository at this point in the history
The `Without` type is not used and conflicts with `Omit`.
  • Loading branch information
francoischalifour committed Apr 16, 2019
1 parent 2e6137b commit 656d000
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/types/utils.ts
@@ -1,2 +1 @@
export type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
export type Without<T, K> = Pick<T, Exclude<keyof T, K>>;

0 comments on commit 656d000

Please sign in to comment.