mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboViteDocs.git
synced 2026-06-15 12:26:36 +00:00
3 lines
152 B
TypeScript
3 lines
152 B
TypeScript
/** Returns true whether the payload is null or undefined */
|
|
export declare const isNullOrUndefined: (payload: unknown) => payload is null | undefined;
|