@dobesv/parquets
Version:
TypeScript implementation of the Parquet file format, based on parquet.js
12 lines (11 loc) • 388 B
TypeScript
import { ParquetValueArray } from './declare';
/**
* Merge the given arrays into one. The resulting array will have the
* same type as the first one.
*
* If only the first array is non-empty (or there is just one array)
* it will be returned unmodified.
*
* @param arrays Arrays to merge
*/
export default function concatValueArrays<T extends ParquetValueArray>(arrays: T[]): T;