From e3439aa021ad257faa7f2cadb0114a4c1f85095a Mon Sep 17 00:00:00 2001 From: Kir_Antipov Date: Thu, 29 Dec 2022 14:41:19 +0000 Subject: [PATCH] Added `types` module --- src/utils/types/index.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/utils/types/index.ts diff --git a/src/utils/types/index.ts b/src/utils/types/index.ts new file mode 100644 index 0000000..6c36c62 --- /dev/null +++ b/src/utils/types/index.ts @@ -0,0 +1,8 @@ +export { Awaitable } from "./awaitable"; +export { TypeOf, TypeOfResult, NamedType } from "./type-of"; +export { UnionToIntersection } from "./union-to-intersection"; +export { ConstructorParameters } from "./constructor-parameters"; +export { ConstructorReturnType } from "./constructor-return-type"; +export { PartialRecord } from "./partial-record"; +export { PromiseType } from "./promise-type"; +export { RecordKey } from "./record-key";