神岛 API 文档 - ArenaPro版
    Preparing search index...

    WebAssembly.Table 的描述符对象。

    The descriptor object for a WebAssembly.Table.

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

    Properties

    element: TableKind

    表中存储的值的类型。

    The type of value stored in the table.

    initial: number

    表的初始大小。

    The initial size of the table.

    maximum?: number

    允许表增长到的最大大小。

    The maximum size the table is allowed to grow to.