UNPKG

react-url-table

Version:

Smart and flexible table component built with React and for React projects. based on React16 hooks and mobx-react-lite

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