49

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?

Nitzan Tomer
  • 155,636
  • 47
  • 315
  • 299
Egor
  • 2,122
  • 2
  • 21
  • 23

1 Answers1

66

My answer refers to TypeScript 2+.

// 1.ts
export const AdminUser = { ... }

// index.ts
import * as users from './docs/users/admin';
var adminUser = users.AdminUser;

The only difference between your code and mine is the * operator in the import statement.

Pang
  • 9,564
  • 146
  • 81
  • 122
Socratees Samipillai
  • 2,985
  • 1
  • 20
  • 20