mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-23 11:41:45 +00:00
Add missing declaration of Map#get in std/assembly (#223)
This commit is contained in:
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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user