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

1
NOTICE
View File

@ -8,6 +8,7 @@ under the licensing terms detailed in LICENSE:
* Igor Sbitnev <PinkaminaDianePie@gmail.com>
* Norton Wang <me@nortonwang.com>
* Alan Pierce <alangpierce@gmail.com>
* Palmer <pengliao@live.cn>
Portions of this software are derived from third-party works licensed under
the following terms:

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;
}