UNPKG
got-cjs
Version:
latest (12.5.4)
next (12.0.4)
12.5.4
12.5.3
12.5.2
12.3.1
12.0.4
12.0.1
12.0.0
12.0.0-beta.4
12.0.0-beta.3
12.0.0-beta.2
0.0.2
0.0.1
Human-friendly and powerful HTTP request library for Node.js
github.com/apify/got-cjs
apify/got-cjs
got-cjs
/
dist
/
source
/
core
/
utils
/
weakable-map.d.ts
9 lines
(8 loc)
•
223 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
default
class
WeakableMap
<K, V> {
weakMap
:
WeakMap
<
Record
<
string
,
unknown
>, V>;
map
:
Map
<K, V>;
constructor
(
);
set
(
key
: K,
value
: V):
void
;
get
(
key
: K): V |
undefined
;
has
(
key
: K):
boolean
; }