Guest User

Untitled

a guest
Dec 11th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. interface WeakMap<K extends object, V> {
  2. delete(key: K): boolean;
  3. get(key: K): V | undefined;
  4. has(key: K): boolean;
  5. set(key: K, value: V): this;
  6. }
Add Comment
Please, Sign In to add comment