typedoc-broken-type-alias-repro
    Preparing search index...

    Interface InterfaceA

    interface InterfaceA {
        propertyA: Readonly;
        propertyB: Readonly<Record<string, string>>;
    }
    Index

    Properties

    Properties

    propertyA: Readonly

    TypeDoc should document this as AliasA, but instead it's Readonly (with no type parameters).

    propertyB: Readonly<Record<string, string>>

    TypeDoc documents this as Readonly<Record<string, string>> - showing that it's capable of rendering the type parameters of Readonly.