1
0
mirror of https://github.com/fluencelabs/assemblyscript synced 2025-04-28 00:12:15 +00:00

12 lines
196 B
TypeScript
Raw Normal View History

2017-12-13 23:24:13 +01:00
declare namespace A {
namespace B {
export namespace C {
let aVar: i32;
const aConst: i32;
function aFunc(): void {}
enum AnEnum {}
class AClass {}
}
}
}