UNPKG

mout

Version:

Modular Utilities

6 lines (5 loc) 184 B
/** * Copy missing properties in the obj from the defaults. */ declare function fillIn<T extends {}, E extends {}>(obj: T, ...varDefaults: any[]): T & E; export default fillIn;