Type alias SpecTypeNamesDict<T>

SpecTypeNamesDict<T>: T extends Record<string, SpecType>
    ? {
        [K in keyof T]: SpecTypeName<T[K]>
    }
    : never

Converts the values in a dict-like SpecTypeOrDict to their corresponding SpecTypeNames. If the input is a SpecType (not dict-like), returns never.

Type Parameters

Generated using TypeDoc