interface Service {
    color: RGBColor;
    enabled: boolean;
    id: string;
    meta?: ServiceMeta;
    name: string;
    options?: ServiceOptions;
    persist?: boolean;
    speech: boolean;
    translate?: string[];
    url: string;
    write: boolean;
}

Properties

color: RGBColor
enabled: boolean
id: string
name: string
options?: ServiceOptions
persist?: boolean
speech: boolean
translate?: string[]
url: string
write: boolean