/** * Combines arrays excluding empty-arrays and null * * @param {any[]} items Additional items to add to the end of array. * @return {[]} new array with added items */ export default function concatNotNull( this: Array, ...arrays: Array ): Array;