7 lines
145 B
TypeScript
7 lines
145 B
TypeScript
import { MESSAGE_TEST } from "./test";
|
|
import { MESSAGE_ALT } from "./test2";
|
|
|
|
//@ts-ignore
|
|
print(MESSAGE_TEST);
|
|
//@ts-ignore
|
|
print(MESSAGE_ALT); |