/** * This file will contain convenience operations for manipulating arrays of any sort. * These methods are tested to be the fastest (currently known) version to accomplish * a goal. */ /** * This method flattens a 2D depth of data. */ export declare function flatten2D(array: T[][]): T[];