//#region src/is-set.d.ts /** * The inverse of the `isEmpty` function * * @param value - The value to type check * @returns An indicator specifying if the value provided is **NOT** of type `null` or `undefined` */ declare const isSet: (value: unknown) => value is NonNullable; //#endregion export { isSet }; //# sourceMappingURL=is-set.d.cts.map