UNPKG

@versatiledatakit/shared

Version:

Versatile Data Kit Shared library enables reusability of shared features like: NgRx Redux, Error Handlers, Utils, Generic Components, etc.

11 lines (10 loc) 282 B
/** * ** Interface for Copy of Object. */ export interface Copy<T extends Record<any, any>> { /** * ** Make shallow copy of current Object. * - Optionally provide partial Object to merge on top of the current one. */ copy(partial?: Partial<T>): any; }