UNPKG

@chakra-ui/core

Version:

Responsive and accessible React UI components built with React and Emotion

3 lines (2 loc) 137 B
export type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>; export type Merge<T, V> = Omit<T, Extract<keyof T, keyof V>> & V;