UNPKG
@soil/arch
Version:
latest (0.8.1)
0.8.1
0.8.0
0.7.2
0.7.1
0.7.0
0.6.6
0.6.5
0.6.4
0.1.1
0.1.0
Architectural constructs for web applications.
github.com/inad9300/Soil
inad9300/Soil
@soil/arch
/
build
/
es6
/
arch
/
src
/
extend.d.ts
6 lines
(5 loc)
•
240 B
TypeScript
View Raw
1
2
3
4
5
6
/** * 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;