mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-25 07:02:13 +00:00
Add missing declaration of Map#get in std/assembly (#223)
This commit is contained in:
parent
4498b28442
commit
d0085ad3d6
1
NOTICE
1
NOTICE
@ -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:
|
||||
|
1
std/assembly/index.d.ts
vendored
1
std/assembly/index.d.ts
vendored
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user