summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-06-22 17:55:58 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-06-22 17:55:58 +0900
commit16c2aefe7b71ec362a26bd1c12ee458bb6b37948 (patch)
tree973dae1315831595dd0ce84df398d2ab816f5dbf
parent:v: (diff)
downloadsharkey-16c2aefe7b71ec362a26bd1c12ee458bb6b37948.tar.gz
sharkey-16c2aefe7b71ec362a26bd1c12ee458bb6b37948.tar.bz2
sharkey-16c2aefe7b71ec362a26bd1c12ee458bb6b37948.zip
Clean up: Remove the unused file
-rw-r--r--src/utils/type.ts3
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] };