Interface SymbolResult

    A symbol type. Only available in jsdoc mode.

    interface SymbolResult {
        element?: NameResult | NumberResult | VariadicResult<NameResult>;
        type: "JsdocTypeSymbol";
        value: string;
    }

    Properties

    Properties

    type
    value: string