|
Last change
on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago |
|
Added visualizations
|
-
Property mode
set to
100644
|
|
File size:
541 bytes
|
| Rev | Line | |
|---|
| [a762898] | 1 | import { EmptyObjectOf } from '../_internal/EmptyObjectOf.js';
|
|---|
| 2 |
|
|---|
| 3 | declare function isEmpty<T extends {
|
|---|
| 4 | __trapAny: any;
|
|---|
| 5 | }>(value?: T): boolean;
|
|---|
| 6 | declare function isEmpty(value: string): value is '';
|
|---|
| 7 | declare function isEmpty(value: Map<any, any> | Set<any> | ArrayLike<any> | null | undefined): boolean;
|
|---|
| 8 | declare function isEmpty(value: object): boolean;
|
|---|
| 9 | declare function isEmpty<T extends object>(value: T | null | undefined): value is EmptyObjectOf<T> | null | undefined;
|
|---|
| 10 | declare function isEmpty(value?: any): boolean;
|
|---|
| 11 |
|
|---|
| 12 | export { isEmpty };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.