1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
=== tests/cases/compiler/moduleElementsInWrongContext2.ts ===
function blah () {
>blah : () => void
module M { }
export namespace N {
export interface I { }
}
namespace Q.K { }
declare module "ambient" {
>"ambient" : typeof import("ambient")
}
export = M;
>M : any
var v;
>v : any
function foo() { }
>foo : () => void
export * from "ambient";
export { foo };
>foo : () => void
export { baz as b } from "ambient";
>baz : any
>b : any
export default v;
>v : any
export default class C { }
>C : C
export function bee() { }
>bee : () => void
import I = M;
>I : any
>M : any
import I2 = require("foo");
>I2 : any
import * as Foo from "ambient";
>Foo : any
import bar from "ambient";
>bar : any
import { baz } from "ambient";
>baz : any
import "ambient";
}
|