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
|
//// [a.js]
function Multimap4() {
this._map = {};
};
Multimap4["prototype"] = {
/**
* @param {string} key
* @returns {number} the value ok
*/
get(key) {
return this._map[key + ''];
}
};
Multimap4["prototype"]["add-on"] = function() {};
Multimap4["prototype"]["addon"] = function() {};
Multimap4["prototype"]["__underscores__"] = function() {};
const map4 = new Multimap4();
map4.get("");
map4["add-on"]();
map4.addon();
map4.__underscores__();
//// [a.d.ts]
declare function Multimap4(): void;
declare class Multimap4 {
_map: {};
"add-on"(): void;
addon(): void;
__underscores__(): void;
/**
* @param {string} key
* @returns {number} the value ok
*/
get(key: string): number;
}
declare const map4: Multimap4;
|