//#region src/Array/empty.d.ts /** * # empty * * ```ts * const Array.empty: [] * ``` * * A reference to an empty array - useful if you want to clear an array, but want any `===` checks to pass if it already was empty. * * ## Example * * ```ts * import { Array } from "@monstermann/array"; * * empty; // [] * ``` * */ declare const empty: never[]; //#endregion export { empty };