//#region src/is-set-array.d.ts /** * Check if the provided value is a non-empty array-like object * * @param value - The value to type check * @returns An indicator specifying if the object provided is a non-empty array-like object */ declare const isSetArray: (value: any) => boolean; //#endregion export { isSetArray }; //# sourceMappingURL=is-set-array.d.cts.map