mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboViteDocs.git
synced 2026-06-16 23:17:02 +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;
|