source: node_modules/es-toolkit/dist/compat/predicate/isArrayLikeObject.d.ts@ ba17441

Last change on this file since ba17441 was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 362 bytes
Line 
1declare function isArrayLikeObject<T extends {
2 __lodashAnyHack: any;
3}>(value: T): boolean;
4declare function isArrayLikeObject(value: ((...args: any[]) => any) | Function | string | boolean | number | null | undefined): value is never;
5declare function isArrayLikeObject(value: any): value is object & {
6 length: number;
7};
8
9export { isArrayLikeObject };
Note: See TracBrowser for help on using the repository browser.