interface ITagData {
    attributes: IAttributeData[];
    description?: string | MarkupContent;
    name: string;
    references?: IReference[];
}

Properties

attributes: IAttributeData[]
description?: string | MarkupContent
name: string
references?: IReference[]