Type Alias ValueType<T>

ValueType<T>: (T extends `${infer E extends ValueTypeDescription}[]${string}`
    ? ValueType<E>[]
    : T extends `boolean${string}`
        ? boolean
        : T extends `number${string}`
            ? number
            : string) | (T extends `${string}?`
    ? undefined
    : never)

Converts a ValueTypeDescription to the type it should be interpreted as.

Type Parameters