UNPKG

siegel

Version:

Web application development ecosystem

9 lines (8 loc) 221 B
/** * Check if value is not undefined * * @param value Value to check * @returns false if value is undefined */ declare const isExists: <T = any>(value: T) => value is Exclude<T, undefined>; export default isExists;