Adding more TS

This commit is contained in:
2021-09-25 11:29:23 -07:00
parent 1bccf9b7e2
commit 4fcfb550a7
13 changed files with 136 additions and 13 deletions

7
ts/index.ts Normal file
View File

@ -0,0 +1,7 @@
import { MESSAGE_TEST } from "./test";
import { MESSAGE_ALT } from "./test2";
//@ts-ignore
print(MESSAGE_TEST);
//@ts-ignore
print(MESSAGE_ALT);

1
ts/test.ts Normal file
View File

@ -0,0 +1 @@
export const MESSAGE_TEST = 'yeet';

1
ts/test2.ts Normal file
View File

@ -0,0 +1 @@
export const MESSAGE_ALT = 'hELLO2';