Type Alias IndexObject<TDesc>

IndexObject<TDesc>: {
    -readonly [K in Exclude<keyof TDesc, OptionalKey<TDesc>>]: ValueType<TDesc[K]>
} & {
    -readonly [K in keyof TDesc]?: ValueType<TDesc[K]>
}

Converts a key/value object type description with ValueTypeDescription values to the corresponding JS type. E.g., { key: 'boolean?' } becomes { key?: boolean }.

Type Parameters