On this page
WebAssembly.TableDescriptor
The TableDescriptor
describes the options you can pass to new WebAssembly.Table()
.
interface TableDescriptor {
element: TableKind;
initial: number;
maximum?: number;
}
© 2018–2022 the Deno authors
https://doc.deno.land/deno/stable/~/WebAssembly.TableDescriptor