From fc540e9a7342fd602c4988abe617d0af201c9876 Mon Sep 17 00:00:00 2001 From: Kir_Antipov Date: Thu, 9 Feb 2023 19:12:12 +0000 Subject: [PATCH] Added `typescript` module --- src/utils/typescript/index.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/utils/typescript/index.ts diff --git a/src/utils/typescript/index.ts b/src/utils/typescript/index.ts new file mode 100644 index 0000000..cdb5947 --- /dev/null +++ b/src/utils/typescript/index.ts @@ -0,0 +1,23 @@ +export { TypeScriptComment } from "./typescript-comment"; +export { TypeScriptDocument } from "./typescript-document"; +export { TypeScriptExport } from "./typescript-export"; +export { TypeScriptImport } from "./typescript-import"; +export { TypeScriptImports } from "./typescript-imports"; +export { TypeScriptInterface } from "./typescript-interface"; +export { TypeScriptTypeLiteral } from "./typescript-type-literal"; +export { TypeScriptTypeAlias } from "./typescript-type-alias"; +export { TypeScriptIntersectionType } from "./typescript-intersection-type"; +export { TypeScriptTypeDefinition } from "./typescript-type-definition"; +export { TypeScriptUnionType } from "./typescript-union-type"; +export { TypeScriptProperty } from "./typescript-property"; +export { TypeScriptObject } from "./typescript-object"; +export { CommentableTypeScriptNode } from "./commentable-typescript-node"; +export { TypeScriptVariable } from "./typescript-variable"; +export { + TypeScriptFormattingOptions, + getIndentation, + getNewline, + getQuotes, + getTab, + incrementIndent, +} from "./typescript-formatting-options";