/** * Merge two objects together ignoring null values in the incoming data * @param startingObj The original source object to be merged into * @param newObj The new incoming data * @signature * U.mergeWithoutNulls(startingObj, newObj) * * @example * U.mergeWithoutNulls({a:1, b:2}, {c:null, d:4}) // => { a:1, b:2, d:4} */ export declare function mergeWithoutNulls(startingObj: object, newObj: object): object; //# sourceMappingURL=mergeWithoutNulls.d.ts.map