All files / src/app/models colorSetting.ts

100% Statements 5/5
100% Branches 2/2
100% Functions 1/1
100% Lines 4/4

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                                    110x 110x 110x 110x    
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",
}