Can someone help me please
I have 2 files main.ts and hi.ts
hi.ts:
export const hello = "dd";
main.ts:
import { hello } from "./hi";
...
class A {
public sayHello() {
console.log("hello=" + hello);
}
...
}
I have exception:
Uncaught ReferenceError: hello is not defined(…)
How can I see this const variable from class A? Is it possible?
question from:https://stackoverflow.com/questions/39385933/cant-export-constant-in-typescript