- tableFromArrays<
 I extends
 Record<
 string
 | number
 | symbol,
 readonly unknown[] | TypedArray | BigIntArray,
 >,
 >(
 input: I,
 ): Table<{ [P in keyof I]: ArrayDataType<I[P]> }>
- Type Parameters- I extends Record<string | number | symbol, readonly unknown[] | TypedArray | BigIntArray>
 - Returns Table<{ [P in keyof I]: ArrayDataType<I[P]> }>- A new Table. 
Creates a new Table from an object of typed arrays or JavaScript arrays.