Skip to content
This repository has been archived by the owner on Oct 7, 2022. It is now read-only.

Commit

Permalink
refactor: we can Omit now
Browse files Browse the repository at this point in the history
  • Loading branch information
ishibashi_y committed Jun 13, 2019
1 parent ca373e8 commit 4d1b43c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,9 +249,6 @@ export interface ResponseProps {
description: string;
}

/** @private */
type Omit<T, K> = Pick<T, Exclude<keyof T, K>>;

/** @private */
type HeaderProps = Omit<ParameterProps, "name" | "in">;

Expand Down

0 comments on commit 4d1b43c

Please sign in to comment.