//#region src/utils/types/MandateProps.d.ts
type MandateProps<T, K extends keyof T> = Omit<T, K> & { [MK in K]-?: NonNullable<T[MK]> };
//#endregion
export { MandateProps };