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 62 63 64
|
//// [tests/cases/compiler/declarationMapsMultifile.ts] ////
//// [a.ts]
export class Foo {
doThing(x: {a: number}) {
return {b: x.a};
}
static make() {
return new Foo();
}
}
//// [index.ts]
import {Foo} from "./a";
const c = new Foo();
c.doThing({a: 42});
export let x = c.doThing({a: 12});
export { c, Foo };
//// [a.js]
"use strict";
exports.__esModule = true;
var Foo = /** @class */ (function () {
function Foo() {
}
Foo.prototype.doThing = function (x) {
return { b: x.a };
};
Foo.make = function () {
return new Foo();
};
return Foo;
}());
exports.Foo = Foo;
//// [index.js]
"use strict";
exports.__esModule = true;
var a_1 = require("./a");
exports.Foo = a_1.Foo;
var c = new a_1.Foo();
exports.c = c;
c.doThing({ a: 42 });
exports.x = c.doThing({ a: 12 });
//// [a.d.ts]
export declare class Foo {
doThing(x: {
a: number;
}): {
b: number;
};
static make(): Foo;
}
//# sourceMappingURL=a.d.ts.map//// [index.d.ts]
import { Foo } from "./a";
declare const c: Foo;
export declare let x: {
b: number;
};
export { c, Foo };
//# sourceMappingURL=index.d.ts.map
|