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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
//// [index.js]
module.exports.a = function a() {}
module.exports.b = function b() {}
module.exports.b.cat = "cat";
module.exports.c = function c() {}
module.exports.c.Cls = class {}
/**
* @param {number} a
* @param {number} b
* @return {string}
*/
module.exports.d = function d(a, b) { return /** @type {*} */(null); }
/**
* @template T,U
* @param {T} a
* @param {U} b
* @return {T & U}
*/
module.exports.e = function e(a, b) { return /** @type {*} */(null); }
/**
* @template T
* @param {T} a
*/
module.exports.f = function f(a) {
return a;
}
module.exports.f.self = module.exports.f;
/**
* @param {{x: string}} a
* @param {{y: typeof module.exports.b}} b
*/
function g(a, b) {
return a.x && b.y();
}
module.exports.g = g;
/**
* @param {{x: string}} a
* @param {{y: typeof module.exports.b}} b
*/
function hh(a, b) {
return a.x && b.y();
}
module.exports.h = hh;
module.exports.i = function i() {}
module.exports.ii = module.exports.i;
// note that this last one doesn't make much sense in cjs, since exports aren't hoisted bindings
module.exports.jj = module.exports.j;
module.exports.j = function j() {}
//// [index.js]
module.exports.a = function a() { };
module.exports.b = function b() { };
module.exports.b.cat = "cat";
module.exports.c = function c() { };
module.exports.c.Cls = /** @class */ (function () {
function Cls() {
}
return Cls;
}());
/**
* @param {number} a
* @param {number} b
* @return {string}
*/
module.exports.d = function d(a, b) { return /** @type {*} */ (null); };
/**
* @template T,U
* @param {T} a
* @param {U} b
* @return {T & U}
*/
module.exports.e = function e(a, b) { return /** @type {*} */ (null); };
/**
* @template T
* @param {T} a
*/
module.exports.f = function f(a) {
return a;
};
module.exports.f.self = module.exports.f;
/**
* @param {{x: string}} a
* @param {{y: typeof module.exports.b}} b
*/
function g(a, b) {
return a.x && b.y();
}
module.exports.g = g;
/**
* @param {{x: string}} a
* @param {{y: typeof module.exports.b}} b
*/
function hh(a, b) {
return a.x && b.y();
}
module.exports.h = hh;
module.exports.i = function i() { };
module.exports.ii = module.exports.i;
// note that this last one doesn't make much sense in cjs, since exports aren't hoisted bindings
module.exports.jj = module.exports.j;
module.exports.j = function j() { };
//// [index.d.ts]
export function a(): void;
export function b(): void;
export namespace b {
const cat: string;
}
export function c(): void;
export namespace c {
export { Cls };
}
export function d(a: number, b: number): string;
export function e<T, U>(a: T, b: U): T & U;
export function f<T>(a: T): T;
export namespace f {
import self = f;
export { self };
}
export function i(): void;
export function j(): void;
declare class Cls {
}
/**
* @param {{x: string}} a
* @param {{y: typeof module.exports.b}} b
*/
export function g(a: {
x: string;
}, b: {
y: {
(): void;
cat: string;
};
}): void;
/**
* @param {{x: string}} a
* @param {{y: typeof module.exports.b}} b
*/
declare function hh(a: {
x: string;
}, b: {
y: {
(): void;
cat: string;
};
}): void;
export { hh as h, i as ii, j as jj };
|