Skip to content

@yantrix/automata v0.0.2Docs


Yantrix API / @yantrix/automata / TDefinedValues

Type Alias: TDefinedValues<T>

ts
type TDefinedValues<T>: T extends object ? { [P in keyof T]: NonNullable<T[P]> } : NonNullable<T>;

Represents a type with all properties defined and non-nullable.

Type Parameters

T

The type to transform.