declare global { interface ReadonlyArray { /** * Returns a boolean indicating whether the array contains any elements. * * @returns `true` if the array is not empty. */ any(): boolean; } interface Array { /** * Returns a boolean indicating whether the array contains any elements. * * @returns `true` if the array is not empty. */ any(): boolean; } } export {};