From 102a130a2db73d19f11f0c6f88b0aef08ef7b261 Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Wed, 2 Jan 2019 12:15:22 +0100 Subject: [PATCH] make variable type more slim --- public/app/types/templates.ts | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/public/app/types/templates.ts b/public/app/types/templates.ts index 98f94fe4251..897044a93fe 100644 --- a/public/app/types/templates.ts +++ b/public/app/types/templates.ts @@ -1,19 +1,5 @@ export interface Variable { - datasource: any; - query: any; - regex: any; - sort: any; - options: any; - current: any; - refresh: number; - hide: number; name: string; - multi: boolean; - includeAll: boolean; - useTags: boolean; - tagsQuery: string; - tagValuesQuery: string; - tags: any[]; - skipUrlSync: boolean; - definition: string; + type: string; + current: any; }