Union of an object's property value types.
Object whose property value types are extracted.
type Status = ValueOf<{ ready: 'ready'; failed: 'failed' }>;const status: Status = 'ready'; Copy
type Status = ValueOf<{ ready: 'ready'; failed: 'failed' }>;const status: Status = 'ready';
Union of an object's property value types.