import { If } from "../boolean"; import { Relates, Relation } from "../type"; /** * @since 0.0.2 */ export type SelectKeys = { [K in keyof T]-?: If, K>; }[keyof T]; /** * @since 0.0.2 */ export type SelectKeysByValue = { [K in keyof T]-?: If, K>; }[keyof T]; //# sourceMappingURL=select-keys.d.ts.map