import { SpecialFields } from "./SpecialFields"; /** * Omits properties with `never` type from an object type. * * `OmitNever` removes all properties whose value type is `never`, producing * a cleaner type without impossible properties. * * @author Jeongho Nam - https://github.com/samchon * @template T Target object type */ export type OmitNever = Omit>;