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

31 lines
652 B
Plaintext

=== tests/cases/compiler/externalModuleQualification.ts ===
export var ID = "test";
>ID : string
>"test" : string
export class DiffEditor<A, B, C> {
>DiffEditor : DiffEditor<A, B, C>
>A : A
>B : B
>C : C
private previousDiffAction: NavigateAction;
>previousDiffAction : NavigateAction
>NavigateAction : NavigateAction
constructor(id: string = ID) {
>id : string
>ID : string
}
}
class NavigateAction {
>NavigateAction : NavigateAction
f(editor: DiffEditor<any, any, any>) {
>f : (editor: DiffEditor<any, any, any>) => void
>editor : DiffEditor<any, any, any>
>DiffEditor : DiffEditor<A, B, C>
}
}