/** Accepts Object type and returns a union of its' own property values */ export type ValuesOf> = T[keyof T]; /** Creates key-value pair object type from provided string union */ export type ConstantOf = Readonly, T>>; //# sourceMappingURL=typeUtils.d.ts.map