rc-js-util
Version:
A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.
11 lines • 411 B
TypeScript
/**
* @public
* Creates an object which is extended sequentially by two additional objects.
* @param base - The object to apply first.
* @param extension - The object to apply second.
*
* @remarks
* See {@link dictionaryCloneExtend}.
*/
export declare function dictionaryCloneExtend<T extends object, U extends object>(base: T, extension: U): T & U;
//# sourceMappingURL=dictionary-clone-extend.d.ts.map