//#region src/is-empty-array.d.ts /** * Check if the provided value's type is `[]` * * @param value - The value to type check * @returns An indicator specifying if the value provided is of type `[]` */ declare const isEmptyArray: (value: unknown) => value is []; /** * Check if the provided value's type is `null` or `undefined` or `[]` * * @param value - The value to type check * @returns An indicator specifying if the value provided is of type `null` or `undefined` or `[]` */ declare const isEmptyOrEmptyArray: (value: unknown) => boolean; //#endregion export { isEmptyArray, isEmptyOrEmptyArray }; //# sourceMappingURL=is-empty-array.d.cts.map