/**
 * Exclude property from type
 */
export type Modify<T, R> = Omit<T, keyof R> & R;
