/** * Helper for enumerating a type from a const object * * @public * @example * ```ts * const Foo = { * Bar: 'bar', * Baz: 'baz' * } as const; * * // This will create a type that is either 'bar' or 'baz' * type FooValues = ValuesOf; * ``` */ export type ValuesOf = T[keyof T]; //# sourceMappingURL=ValuesOf.d.ts.map