Type alias SpecTypeName<T>

SpecTypeName<T>: {
    [P in keyof SpecTypes]: SpecTypes[P] extends T
        ? P
        : never
}[keyof SpecTypes]

The string representation of a SpecType as per TypeScript's type system.

Type Parameters

Generated using TypeDoc