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 65 66 67
|
//// [tests/cases/conformance/jsdoc/declarations/jsDeclarationsReexportedCjsAlias.ts] ////
//// [lib.js]
/**
* @param {string} a
*/
function bar(a) {
return a + a;
}
class SomeClass {
a() {
return 1;
}
}
module.exports = {
bar,
SomeClass
}
//// [main.js]
const { SomeClass, SomeClass: Another } = require('./lib');
module.exports = {
SomeClass,
Another
}
//// [lib.js]
/**
* @param {string} a
*/
function bar(a) {
return a + a;
}
var SomeClass = /** @class */ (function () {
function SomeClass() {
}
SomeClass.prototype.a = function () {
return 1;
};
return SomeClass;
}());
module.exports = {
bar: bar,
SomeClass: SomeClass
};
//// [main.js]
var _a = require('./lib'), SomeClass = _a.SomeClass, Another = _a.SomeClass;
module.exports = {
SomeClass: SomeClass,
Another: Another
};
//// [lib.d.ts]
/**
* @param {string} a
*/
export function bar(a: string): string;
export class SomeClass {
a(): number;
}
//// [main.d.ts]
import { SomeClass } from "./lib";
import { SomeClass as Another } from "./lib";
export { SomeClass, Another };
|