UNPKG

@open-condo/ui

Version:

A set of React UI components for developing applications inside the condo ecosystem

8 lines 196 B
type Only<T, U> = { [P in keyof T]: T[P]; } & { [P in keyof Omit<U, keyof T>]?: never; }; export type Either<T, U> = Only<T, U> | Only<U, T>; export {}; //# sourceMappingURL=types.d.ts.map