Home > @skunkteam/types > MergeType
Result of the InterfaceType.withOptional(), InterfaceType.withRequired() and InterfaceType.mergeWith() methods.
Signature:
type MergeType<Props extends Properties, ResultType, OtherProps extends Properties, OtherResultType> = TypeImpl<
InterfaceType<Simplify<Omit<Props, keyof OtherProps> & OtherProps>, Simplify<Omit<ResultType, keyof OtherResultType> & OtherResultType>>
>;
References: Properties, TypeImpl, InterfaceType, Simplify