//#region src/functions/isNonNullable/isNonNullable.d.ts /** * Checks if a value is not null or undefined. * @param value The value to inspect. * @returns Returns `true` if the value is NOT `null` or `undefined`, or `false` otherwise. */ declare function isNonNullable(value: T): value is NonNullable; //#endregion export { isNonNullable as t }; //# sourceMappingURL=isNonNullable-Cy_yrtSd.d.cts.map