TypeScript/tests/baselines/reference/partiallyAmbientFundule.js
2014-07-12 17:30:19 -07:00

10 lines
203 B
JavaScript

//// [partiallyAmbientFundule.ts]
declare module foo {
export function x(): any;
}
function foo () { } // Legal, because module is ambient
//// [partiallyAmbientFundule.js]
function foo() {
}