We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
export namespace ns { export const a: i32 = 1; export const b: i32 = a; }
Output:
ERROR TS2304: Cannot find name 'a'. export const b: i32 = a; ~
But this works:
export namespace ns { export const a: i32 = 1; export const b: i32 = ns.a; }