13 lines
595 B
TypeScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
import { EmptyObjectOf } from "../_internal/EmptyObjectOf.mjs";
//#region src/compat/predicate/isEmpty.d.ts
declare function isEmpty<T extends {
__trapAny: any;
}>(value?: T): boolean;
declare function isEmpty(value: string): value is '';
declare function isEmpty(value: Map<any, any> | Set<any> | ArrayLike<any> | null | undefined): boolean;
declare function isEmpty(value: object): boolean;
declare function isEmpty<T extends object>(value: T | null | undefined): value is EmptyObjectOf<T> | null | undefined;
declare function isEmpty(value?: any): boolean;
//#endregion
export { isEmpty };