diff --git a/typescript/types/utility.d.ts b/typescript/types/utility.d.ts new file mode 100644 index 000000000..9deabd118 --- /dev/null +++ b/typescript/types/utility.d.ts @@ -0,0 +1,5 @@ +type Omit = Pick>; + +type Pick = { + [P in K]: T[P]; +};