noImplicitAny: Down approx 200 errors (#18143)

* noImplicitAny playlist approx 200

* Add AngularPanelMenuItem interface

* Roughly 100 noImplicitAny
This commit is contained in:
Tobias Skarhed
2019-07-18 08:03:04 +02:00
committed by Torkel Ödegaard
parent ed099d5ca0
commit c8498461a5
48 changed files with 268 additions and 149 deletions

View File

@@ -123,6 +123,16 @@ export interface PanelMenuItem {
subMenu?: PanelMenuItem[];
}
export interface AngularPanelMenuItem {
click: Function;
icon: string;
href: string;
divider: boolean;
text: string;
shortcut: string;
submenu: any[];
}
export enum VizOrientation {
Auto = 'auto',
Vertical = 'vertical',