You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-30 23:44:55 +02:00
Tools: Apply rule @typescript-eslint/type-annotation-spacing
This commit is contained in:
@ -16,40 +16,40 @@ export default class JoplinViews {
|
||||
private store: any;
|
||||
private plugin: Plugin;
|
||||
|
||||
private dialogs_:JoplinViewsDialogs = null;
|
||||
private panels_:JoplinViewsPanels = null;
|
||||
private menuItems_:JoplinViewsMenuItems = null;
|
||||
private menus_:JoplinViewsMenus = null;
|
||||
private toolbarButtons_:JoplinViewsToolbarButtons = null;
|
||||
private implementation_:any = null;
|
||||
private dialogs_: JoplinViewsDialogs = null;
|
||||
private panels_: JoplinViewsPanels = null;
|
||||
private menuItems_: JoplinViewsMenuItems = null;
|
||||
private menus_: JoplinViewsMenus = null;
|
||||
private toolbarButtons_: JoplinViewsToolbarButtons = null;
|
||||
private implementation_: any = null;
|
||||
|
||||
constructor(implementation:any, plugin: Plugin, store: any) {
|
||||
constructor(implementation: any, plugin: Plugin, store: any) {
|
||||
this.store = store;
|
||||
this.plugin = plugin;
|
||||
this.implementation_ = implementation;
|
||||
}
|
||||
|
||||
public get dialogs():JoplinViewsDialogs {
|
||||
public get dialogs(): JoplinViewsDialogs {
|
||||
if (!this.dialogs_) this.dialogs_ = new JoplinViewsDialogs(this.implementation_.dialogs, this.plugin, this.store);
|
||||
return this.dialogs_;
|
||||
}
|
||||
|
||||
public get panels():JoplinViewsPanels {
|
||||
public get panels(): JoplinViewsPanels {
|
||||
if (!this.panels_) this.panels_ = new JoplinViewsPanels(this.plugin, this.store);
|
||||
return this.panels_;
|
||||
}
|
||||
|
||||
public get menuItems():JoplinViewsMenuItems {
|
||||
public get menuItems(): JoplinViewsMenuItems {
|
||||
if (!this.menuItems_) this.menuItems_ = new JoplinViewsMenuItems(this.plugin, this.store);
|
||||
return this.menuItems_;
|
||||
}
|
||||
|
||||
public get menus():JoplinViewsMenus {
|
||||
public get menus(): JoplinViewsMenus {
|
||||
if (!this.menus_) this.menus_ = new JoplinViewsMenus(this.plugin, this.store);
|
||||
return this.menus_;
|
||||
}
|
||||
|
||||
public get toolbarButtons():JoplinViewsToolbarButtons {
|
||||
public get toolbarButtons(): JoplinViewsToolbarButtons {
|
||||
if (!this.toolbarButtons_) this.toolbarButtons_ = new JoplinViewsToolbarButtons(this.plugin, this.store);
|
||||
return this.toolbarButtons_;
|
||||
}
|
||||
|
Reference in New Issue
Block a user