//#region src/property-exists.d.ts /** * Check if the provided object has the provided property * * @param object - The object to check * @param propertyKey - The property to check * @returns An indicator specifying if the object has the provided property */ declare const propertyExists: (object: any, propertyKey: PropertyKey) => boolean; /** * Check if the provided object has the provided property and if it's safe to merge * * @param object - The object to check * @param propertyKey - The property to check * @returns An indicator specifying if the object has the provided property and if it's safe to merge */ declare const propertyUnsafe: (object: any, propertyKey: PropertyKey) => boolean; //#endregion export { propertyExists, propertyUnsafe }; //# sourceMappingURL=property-exists.d.mts.map