| // DO NOT EDIT. This file is automatically generated. |
| |
| export interface Go2TS { |
| GenerateNominalTypes: boolean; |
| } |
| |
| export interface Tool { |
| id: string; |
| domain: Domains; |
| display_name: string; |
| description: string; |
| phase: Phases; |
| teams_id: string; |
| code_path: string[] | null; |
| audience: Audiences[] | null; |
| adoption_stage: AdoptionStage; |
| landing_page: string; |
| docs: { [key: string]: string } | null; |
| feedback: { [key: string]: string } | null; |
| resources: { [key: string]: string } | null; |
| } |
| |
| export interface CreateOrUpdateResponse { |
| url: string; |
| } |
| |
| export type AdoptionStage = 'All' | 'No' | 'Conditionally'; |
| |
| export type Audiences = 'Any' | 'Chrome' | 'ChromeOS' | 'Android' | 'PEEPSI' | 'Skia'; |
| |
| export type Phases = 'GA' | 'Deprecated' | 'Preview'; |
| |
| export type Domains = 'Build' | 'Debugging' | 'Development' | 'Logging' | 'Other' | 'Release' | 'Security' | 'Source' | 'Testing'; |