A single data point included in a Code Insights report.

interface BitbucketReportData {
    title: string;
    type: ReportDataType;
    value: string | number | boolean | { href: string; text?: string };
}

Properties

Properties

title: string
value: string | number | boolean | { href: string; text?: string }