Interface VariadicResult<T>
interface VariadicResult<T> {
element?: T;
meta: {
position: "prefix" | "suffix";
squareBrackets: boolean;
};
type: "JsdocTypeVariadic";
}
element?: T;
meta: {
position: "prefix" | "suffix";
squareBrackets: boolean;
};
type: "JsdocTypeVariadic";
}
Type Parameters
- T extends RootResult
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 notjsdoc
this can only occur in position'suffix'
.