Files
lan-manager/web/node_modules/is-any-array/lib/index.d.ts
openclaw 0a5f6a8047 Initial commit: Lan-manager project code
- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs

Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
2026-04-20 00:52:58 +08:00

9 lines
487 B
TypeScript

export type AnyArray = any[] | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array;
/**
* Checks if an object is an instance of an Array (array or typed array, except those that contain bigint values).
*
* @param value - Object to check.
* @returns True if the object is an array or a typed array.
*/
export declare function isAnyArray(value: unknown): value is AnyArray;
//# sourceMappingURL=index.d.ts.map