UNPKG

vuestic-ui

Version:
9 lines (8 loc) 313 B
/** * 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;