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