vuestic-ui
Version:
Vue 3 UI Framework
9 lines (8 loc) • 313 B
TypeScript
/**
* Checks if provided value not exists.
*
* @param value any value to check it.
*/
export declare const isNilValue: (value: any) => value is "" | null | undefined;
export declare const notNil: <T>(value: T) => value is NonNullable<T>;
export declare const isNil: (value: any) => value is null | undefined;