Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SuggestionClusterProto

import type { SuggestionClusterProto } from "https://googleapis.deno.dev/v1/toolresults:v1beta3.ts";

A set of similar suggestions that we suspect are closely related. This proto and most of the nested protos are branched from foxandcrown.prelaunchreport.service.SuggestionClusterProto, replacing PLR's dependencies with FTL's.

interface SuggestionClusterProto {
category?:
| "unknownCategory"
| "contentLabeling"
| "touchTargetSize"
| "lowContrast"
| "implementation";
suggestions?: SuggestionProto[];
}

§Properties

§
category?: "unknownCategory" | "contentLabeling" | "touchTargetSize" | "lowContrast" | "implementation"
[src]

Category in which these types of suggestions should appear. Always set.

§
suggestions?: SuggestionProto[]
[src]

A sequence of suggestions. All of the suggestions within a cluster must have the same SuggestionPriority and belong to the same SuggestionCategory. Suggestions with the same screenshot URL should be adjacent.