declare global { interface Array { /** * Returns `true` if length of the array is greater than `0`. * * @example * ```typescript * [].isNotEmpty(); // => false * [1, 2, 3].isNotEmpty(); // => true * ``` */ isNotEmpty( this: AS, ): this is Exclude; } interface ReadonlyArray { /** * Returns `true` if length of the array is greater than `0`. * * @example * ```typescript * [].isNotEmpty(); // => false * [1, 2, 3].isNotEmpty(); // => true * ``` */ isNotEmpty(): this is Exclude; } } export {}; //# sourceMappingURL=isNotEmpty.d.ts.map