Add missing declaration of Map#get in std/assembly (#223)

This commit is contained in:
LiaoPeng
2018-09-09 09:54:50 +08:00
committed by Daniel Wirtz
parent 4498b28442
commit d0085ad3d6
2 changed files with 2 additions and 0 deletions

View File

@ -524,6 +524,7 @@ declare class Map<K,V> {
readonly size: i32;
has(key: K): bool;
set(key: K, value: V): void;
get(key: K): V;
delete(key: K): bool;
clear(): void;
}