UNPKG
webdriverio-automation
Version:
latest (1.0.0)
1.0.0
WebdriverIO-Automation android ios project
webdriverio-automation
/
node_modules
/
got
/
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
; }