mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-05-14 00:01:32 +00:00
7 lines
244 B
TypeScript
7 lines
244 B
TypeScript
/// <reference path="../../portable-assembly.d.ts" />
|
|
/// <reference path="./binaryen-c.d.ts" />
|
|
|
|
// Raw memory accesses to Binaryen memory
|
|
declare function store<T = u8>(ptr: usize, val: T): void;
|
|
declare function load<T = u8>(ptr: usize): T;
|