From 02a863194a1cdb437cbdc9b85436c90f3a781ef2 Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Wed, 10 Mar 2021 13:16:47 +0700 Subject: [PATCH] Add index.ts --- .idea/.gitignore | 8 ++++++++ .idea/cubetiq-ts-utils.iml | 9 +++++++++ .idea/misc.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ src/index.ts | 5 +++++ 6 files changed, 42 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/cubetiq-ts-utils.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 src/index.ts diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..73f69e0 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/cubetiq-ts-utils.iml b/.idea/cubetiq-ts-utils.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/cubetiq-ts-utils.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..3071b76 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..91349b1 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..49f1107 --- /dev/null +++ b/src/index.ts @@ -0,0 +1,5 @@ +const Index = (): void => { + console.log("Index", "Hello, you are init the default function!") +} + +export default Index; \ No newline at end of file