import { Relation } from "../type"; import { Select } from "."; /** * exclude from union `U` the types that relate to query `Q` by relation `R` * * @since 0.0.2 */ export type Exclude = U extends Select ? never : U; //# sourceMappingURL=exclude.d.ts.map