/** * Gets an nested property from an specific object or default, if not isset. * @param {any} objectToCheck The Property to checked. * @param {string} keyNameSpace The Key-Namespace of the Property (for example: "My.Nested.Property"). * @param {any} defaultValue The defaultValue if property not exist. * @returns {any} If the Property is set, than the requested property otherwise defaultValue. * @since 1.0.0 */ export default function getDeepOrDefault(objectToCheck: any, keyNameSpace: string, defaultValue?: TResult): TResult; //# sourceMappingURL=getDeepOrDefault.d.ts.map