es-stl - v3.0.3
    Preparing search index...

    Type Alias ValueOf<T>

    ValueOf: T[keyof T]

    Union of an object's property value types.

    Type Parameters

    • T extends object

      Object whose property value types are extracted.

    type Status = ValueOf<{ ready: 'ready'; failed: 'failed' }>;
    const status: Status = 'ready';