TypeScript/tests/baselines/reference/es6ExportAllInEs5.types
2015-04-15 16:44:20 -07:00

26 lines
402 B
Plaintext

=== tests/cases/compiler/server.ts ===
export class c {
>c : c
}
export interface i {
>i : i
}
export module m {
>m : typeof m
export var x = 10;
>x : number
>10 : number
}
export var x = 10;
>x : number
>10 : number
export module uninstantiated {
>uninstantiated : any
}
=== tests/cases/compiler/client.ts ===
export * from "server";
No type information for this code.