/** * Push an object in an array, unless already there. * * @param {*[]} arr The array to push the element. * @param {*} obj The object for which to test. * @returns {boolean} The object has been pushed in the array. */ export function pushUnlessIncluded(arr: any[], obj: any): boolean;