UNPKG

@soil/arch

Version:

Architectural constructs for web applications.

6 lines (5 loc) 240 B
/** * Extend `target` with the enumerable own properties in `source`. Similar to * `Object.assign()`, but including getters and setters. */ export declare function extend<T extends object, U extends object>(target: T, source: U): T & U;