Interface VariadicResult<T>

    A rest or spread parameter. It can either occur in @param tags or as last parameter of a function, or it is a spread tuple or object type and can occur inside these. For any mode that is not jsdoc this can only occur in position 'suffix'.

    interface VariadicResult<T> {
        element?: T;
        meta: {
            position: "prefix" | "suffix";
            squareBrackets: boolean;
        };
        type: "JsdocTypeVariadic";
    }

    Type Parameters

    Properties

    Properties

    element?: T
    meta: {
        position: "prefix" | "suffix";
        squareBrackets: boolean;
    }
    type