mirror of https://github.com/grafana/grafana
parent
7268f16c54
commit
0ff572efbf
@ -1 +1,2 @@ |
||||
export * from './components'; |
||||
export * from './types'; |
||||
|
@ -0,0 +1 @@ |
||||
export * from './series'; |
@ -0,0 +1,13 @@ |
||||
import { Moment } from 'moment'; |
||||
|
||||
export enum LoadingState { |
||||
NotStarted = 'NotStarted', |
||||
Loading = 'Loading', |
||||
Done = 'Done', |
||||
Error = 'Error', |
||||
} |
||||
|
||||
export interface RawTimeRange { |
||||
from: Moment | string; |
||||
to: Moment | string; |
||||
} |
Loading…
Reference in new issue