/** * A function that 'filters' a base array by the secondary array and returns the different elements in the base array * @param {Array} baseArray The base array * @param {Array} filterArray The secondary array to 'filter' by * @returns {Array} The elements of the base array that do not exist in the secondary array */ export function filterArrayByArray(baseArray: any[], filterArray: any[]): any[];