UNPKG

@overture-stack/lyric

Version:
7 lines (6 loc) 270 B
/** * Asserts that the value is not null or undefined. * This lets TypeScript know the value is of type T after this check. * @param value The value to check for existence. */ export declare function assertExists<T>(value: T | null | undefined): asserts value is T;