Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 111x 111x 111x 111x | export class SignalAppearance {
value_color: string;
forced_value_color: string;
value_line_style: LineStyle;
forced_value_line_style: LineStyle;
}
export class GraphTheme extends SignalAppearance {
id: string;
name: string;
signal_id: string;
private: boolean;
created_by_user: string;
in_user_library: boolean;
active_for_user: boolean;
}
export enum LineStyle {
solid = "solid",
dotted = "dotted",
dashed = "dashed",
}
|