Skip to content

Commit

Permalink
app/core/services/segment_srv.d.ts: optional fields in MetricSegment
Browse files Browse the repository at this point in the history
  • Loading branch information
rozetko committed Sep 5, 2019
1 parent 6c62571 commit db4a6da
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions app/core/services/segment_srv.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ export declare class UiSegmentSrv {

export declare class MetricSegment {
value: string;
html: string;
type: string;
expandable: boolean;
text: string;
cssClass: string;
fake: boolean;
custom: boolean;
selectMode: boolean;
html?: string;
type?: string;
expandable?: boolean;
text?: string;
cssClass?: string;
fake?: boolean;
custom?: boolean;
selectMode?: boolean;

constructor(options: string | MetricSegment);
}

0 comments on commit db4a6da

Please sign in to comment.