Skip to content

Commit

Permalink
fix used before declare
Browse files Browse the repository at this point in the history
  • Loading branch information
Dosant committed Jan 20, 2020
1 parent 873aa19 commit 1257fb1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,6 @@ export type SavedDashboardPanelTo60 = Pick<
readonly type: string;
};

export type DashboardAppStateDefaults = DashboardAppState & {
description?: string;
};

export interface DashboardAppState {
panels: SavedDashboardPanel[];
fullScreenMode: boolean;
Expand All @@ -112,6 +108,10 @@ export interface DashboardAppState {
savedQuery?: string;
}

export type DashboardAppStateDefaults = DashboardAppState & {
description?: string;
};

export interface DashboardAppStateTransitions {
set: (
state: DashboardAppState
Expand Down

0 comments on commit 1257fb1

Please sign in to comment.