summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2018-06-27 00:55:44 +0900
committerGitHub <noreply@github.com>2018-06-27 00:55:44 +0900
commit9ac34badad7a99166907e1a42f8a817413a74d58 (patch)
treeeb45b75f1f5f87a36f0eefec42f449fda109a6ad /src/utils
parentNew translations ja.yml (Portuguese) (diff)
parentMerge pull request #1789 from syuilo/greenkeeper/uuid-3.3.0 (diff)
downloadmisskey-9ac34badad7a99166907e1a42f8a817413a74d58.tar.gz
misskey-9ac34badad7a99166907e1a42f8a817413a74d58.tar.bz2
misskey-9ac34badad7a99166907e1a42f8a817413a74d58.zip
Merge branch 'master' into l10n_master
Diffstat (limited to 'src/utils')
-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] };