opendash
Version:
open.DASH data visualization framework
13 lines (10 loc) • 312 B
text/typescript
type UnixTimestampMilliseconds = number;
export interface DataItemHistoryOptionsInterface {
live?: boolean;
historyType?: "relative" | "absolute";
start?: UnixTimestampMilliseconds;
end?: UnixTimestampMilliseconds;
value?: number;
unit?: "day" | "week" | "month" | "year";
resulution?: number;
}