1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-24 23:26:50 +02:00

Tools: Apply rule @typescript-eslint/member-delimiter-style

This commit is contained in:
Laurent Cozic
2020-11-12 19:29:22 +00:00
parent 42799b0662
commit 17d835d694
103 changed files with 964 additions and 953 deletions

View File

@ -1,22 +1,22 @@
import { Draft } from 'immer';
export interface ViewInfo {
view: any,
plugin: any,
view: any;
plugin: any;
}
interface PluginViewState {
id: string,
type: string,
id: string;
type: string;
}
interface PluginViewStates {
[key: string]: PluginViewState,
[key: string]: PluginViewState;
}
interface PluginContentScriptState {
id: string,
path: string,
id: string;
path: string;
}
interface PluginContentScriptStates {
@ -24,9 +24,9 @@ interface PluginContentScriptStates {
}
interface PluginState {
id: string,
contentScripts: PluginContentScriptStates,
views: PluginViewStates,
id: string;
contentScripts: PluginContentScriptStates;
views: PluginViewStates;
}
export interface PluginStates {
@ -34,7 +34,7 @@ export interface PluginStates {
}
export interface State {
plugins: PluginStates,
plugins: PluginStates;
}
export const stateRootKey = 'pluginService';