UNPKG

@action-land/component

Version:
8 lines (7 loc) 196 B
/** * Overwrite the props in T with props in S. * @typeparam T Base object * @typeparam S New object * @category ComponentNext */ export declare type mergeProps<T, S> = Omit<T, keyof S> & S;