mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
11 lines
241 B
TypeScript
11 lines
241 B
TypeScript
|
import { TimeRange, TimeZone } from '@grafana/data';
|
||
|
|
||
|
export interface TimeModel {
|
||
|
time: any;
|
||
|
fiscalYearStartMonth?: number;
|
||
|
refresh: any;
|
||
|
timepicker: any;
|
||
|
getTimezone(): TimeZone;
|
||
|
timeRangeUpdated(timeRange: TimeRange): void;
|
||
|
}
|