//#region src/Array/isEmpty.d.ts /** * # isEmpty * * ```ts * function Array.isEmpty(target: readonly T[]): boolean * ``` * * Returns `true` if `array` has no elements, otherwise returns `false`. * * ## Example * * ```ts [data-first] * import { Array } from "@monstermann/array"; * * Array.isEmpty([]); // true * ``` * * ```ts [data-last] * import { Array } from "@monstermann/array"; * * pipe([], Array.isEmpty()); // true * ``` * */ declare const isEmpty: { (): (target: readonly T[]) => boolean; (target: readonly T[]): boolean; }; //#endregion export { isEmpty };