libs/d3/src/lib/model/d3-highlight.ts
Properties |
ids |
ids:
|
Type : Map<string | HighlightValue>
|
timestamp |
timestamp:
|
Type : number
|
export interface HighlightOutput {
timestamp: number;
ids: Map<string, HighlightValue>;
}
export interface HighlightValue {
timestamp: number;
value: number;
}