assemblyscript/std/memory.d.ts

7 lines
143 B
TypeScript
Raw Normal View History

/// <reference path="../assembly.d.ts" />
declare class Memory {
static allocate(size: usize): usize;
static dispose(ptr: usize): void;
}