UNPKG

@n3okill/utils

Version:
7 lines (6 loc) 211 B
/** * Return flattened array from the given arrays * @param args Multiple arrays to be flattened * @returns The flattened array */ export declare function flatten<T>(...args: Array<Array<T> | T>): Array<T>;