TypeScript/tests/baselines/reference/sourceMapWithMultipleFilesWithFileEndingWithInterface.types

36 lines
630 B
Text
Raw Normal View History

2014-08-21 01:18:40 +02:00
=== tests/cases/compiler/a.ts ===
module M {
>M : typeof M
export var X = 1;
>X : number
}
interface Navigator {
>Navigator : Navigator
getGamepads(func?: any): any;
>getGamepads : (func?: any) => any
>func : any
webkitGetGamepads(func?: any): any
>webkitGetGamepads : (func?: any) => any
>func : any
msGetGamepads(func?: any): any;
>msGetGamepads : (func?: any) => any
>func : any
webkitGamepads(func?: any): any;
>webkitGamepads : (func?: any) => any
>func : any
}
=== tests/cases/compiler/b.ts ===
module m1 {
>m1 : typeof m1
export class c1 {
>c1 : c1
}
}