diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-22 17:55:58 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-22 17:55:58 +0900 |
| commit | 16c2aefe7b71ec362a26bd1c12ee458bb6b37948 (patch) | |
| tree | 973dae1315831595dd0ce84df398d2ab816f5dbf /src/utils | |
| parent | :v: (diff) | |
| download | sharkey-16c2aefe7b71ec362a26bd1c12ee458bb6b37948.tar.gz sharkey-16c2aefe7b71ec362a26bd1c12ee458bb6b37948.tar.bz2 sharkey-16c2aefe7b71ec362a26bd1c12ee458bb6b37948.zip | |
Clean up: Remove the unused file
Diffstat (limited to 'src/utils')
| -rw-r--r-- | src/utils/type.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/utils/type.ts b/src/utils/type.ts deleted file mode 100644 index ba6ea0be77..0000000000 --- a/src/utils/type.ts +++ /dev/null @@ -1,3 +0,0 @@ -// https://github.com/Microsoft/TypeScript/issues/12215 -export type Diff<T extends string, U extends string> = ({ [P in T]: P } & { [P in U]: never } & { [x: string]: never })[T]; -export type Omit<T, K extends keyof T> = { [P in Diff<keyof T, K>]: T[P] }; |