lint typescript-eslint/consistent-indexed-object-style

This commit is contained in:
Eugene Pankov
2020-12-24 18:56:59 +01:00
parent 2ef3a81dd8
commit aacc603309
11 changed files with 13 additions and 14 deletions

View File

@@ -19,8 +19,8 @@ export class PluginsSettingsTabComponent {
@Input() availablePlugins$: Observable<PluginInfo[]>
@Input() availablePluginsQuery$ = new BehaviorSubject<string>('')
@Input() availablePluginsReady = false
@Input() knownUpgrades: {[id: string]: PluginInfo|null} = {}
@Input() busy: {[id: string]: BusyState} = {}
@Input() knownUpgrades: Record<string, PluginInfo|null> = {}
@Input() busy: Record<string, BusyState> = {}
@Input() erroredPlugin: string
@Input() errorMessage: string