TeaWeb/build/dtsgen/test/test_01.ts
2018-12-04 18:48:05 +01:00

33 lines
No EOL
331 B
TypeScript

function test() : string {
return "IDK!";
}
class C {
}
function test2() : C {
return undefined;
}
function test4() : D {
return undefined;
}
namespace T {
function C() {
}
export function D() {
}
}
namespace T {
namespace Y {
function T() {}
export function Y() {}
}
}