TypeScript/tests/baselines/reference/umd3.js
2016-04-12 16:21:27 -07:00

23 lines
383 B
TypeScript

//// [tests/cases/conformance/externalModules/umd3.ts] ////
//// [foo.d.ts]
export var x: number;
export function fn(): void;
export interface Thing { n: typeof x }
export as namespace Foo;
//// [a.ts]
import * as Foo from './foo';
Foo.fn();
let x: Foo.Thing;
let y: number = x.n;
//// [a.js]
"use strict";
var Foo = require("./foo");
Foo.fn();
var x;
var y = x.n;