/**
 * ** 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;
}
