deno / 1.23.2 / ~ / webassembly.tabledescriptor.html /

WebAssembly.TableDescriptor

The TableDescriptor describes the options you can pass to new WebAssembly.Table().

interface TableDescriptor {
element : TableKind;
initial : number;
maximum? : number;
}

Properties

element : TableKind
initial : number
maximum? : number