make variable type more slim

This commit is contained in:
Erik Sundell
2019-01-02 12:15:22 +01:00
parent 786df7920e
commit 102a130a2d

View File

@@ -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;
}