Browse Source

make variable type more slim

Erik Sundell 7 years ago
parent
commit
681f1f31e1
1 changed files with 2 additions and 16 deletions
  1. 2 16
      public/app/types/templates.ts

+ 2 - 16
public/app/types/templates.ts

@@ -1,19 +1,5 @@
 export interface Variable {
 export interface Variable {
-  datasource: any;
-  query: any;
-  regex: any;
-  sort: any;
-  options: any;
-  current: any;
-  refresh: number;
-  hide: number;
   name: string;
   name: string;
-  multi: boolean;
-  includeAll: boolean;
-  useTags: boolean;
-  tagsQuery: string;
-  tagValuesQuery: string;
-  tags: any[];
-  skipUrlSync: boolean;
-  definition: string;
+  type: string;
+  current: any;
 }
 }