import { DisableNever } from "../never"; import { DisableUnion } from "../union"; type IsObject = [T] extends [ {} ] ? unknown : never; export type ExactlyCustom = DisableNever & DisableUnion & IsObject; export {}; //# sourceMappingURL=exactlyCustom.d.ts.map