//#region src/is-set-object.d.ts /** * Check if the provided value's type is an object with some fields set * * @param value - The value to type check * @returns An indicator specifying if the value provided is an object with some fields se */ declare const isSetObject: (value: unknown) => value is NonNullable; //#endregion export { isSetObject }; //# sourceMappingURL=is-set-object.d.mts.map