export interface DefaultsObject { [key: string]: any; } /** * Recursively assigns default values only for non-existent keys in target object, * based on source object structure. Does not modify any existing values in target. * @param target - The target object to assign defaults to * @param source - The source object containing the structure and default values */ //# sourceMappingURL=assignDefaults.d.ts.map