@compodoc/compodoc
Version:
The missing documentation tool for your Angular application
22 lines (18 loc) • 446 B
text/typescript
export interface JsdocTagNameInterface {
text: string;
}
export interface JsdocTypeExpressionInterface {
type: any;
}
export interface JsdocParameterNameInterface {
text: string;
}
export interface JsdocTagInterface {
comment: string;
name: string;
tagName: JsdocTagNameInterface;
parameterName: JsdocParameterNameInterface;
type: any;
defaultValue: any;
typeExpression: JsdocTypeExpressionInterface;
}