UNPKG

@mui/x-charts

Version:

The community edition of the Charts components (MUI X).

6 lines (5 loc) 181 B
type Without<T, U> = { [P in Exclude<keyof T, keyof U>]?: never; }; export type XOR<T, U> = T | U extends object ? (Without<T, U> & U) | (Without<U, T> & T) : T | U; export {};