|
Last change
on this file since a762898 was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago |
|
Added visualizations
|
-
Property mode
set to
100644
|
|
File size:
362 bytes
|
| Line | |
|---|
| 1 | declare function isArrayLikeObject<T extends {
|
|---|
| 2 | __lodashAnyHack: any;
|
|---|
| 3 | }>(value: T): boolean;
|
|---|
| 4 | declare function isArrayLikeObject(value: ((...args: any[]) => any) | Function | string | boolean | number | null | undefined): value is never;
|
|---|
| 5 | declare function isArrayLikeObject(value: any): value is object & {
|
|---|
| 6 | length: number;
|
|---|
| 7 | };
|
|---|
| 8 |
|
|---|
| 9 | export { isArrayLikeObject };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.