• 从类型化数组的对象创建一个新的表。

    类型参数

    • I extends Record<string | number | symbol, TypedArray>

    参数

    • input: I

      输入类型化数组的对象。

    返回值 Table<{ [P in string | number | symbol]: TypedArrayDataType<I[P]> }>

    一个新的表。

    const table = makeTable({
    a: new Int8Array([1, 2, 3]),
    })