UNPKG

telefunc

Version:

Remote functions. Instead of API.

4 lines (3 loc) 253 B
export declare function isNullish(val: unknown): val is null | undefined; export declare function isNotNullish<T>(p: T | null | undefined): p is T; export declare function isNotNullish_keyVal<T>(arg: [string, T | null | undefined]): arg is [string, T];