Added types module

This commit is contained in:
Kir_Antipov 2022-12-29 14:41:19 +00:00
parent 67b5bcbf85
commit e3439aa021

8
src/utils/types/index.ts Normal file
View file

@ -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";