Use Record type (#7798)

This commit is contained in:
Paulus Schoutsen
2020-11-25 10:40:32 +01:00
committed by GitHub
parent f6cb1ffe20
commit 1d13947e71
27 changed files with 45 additions and 45 deletions

View File

@@ -34,7 +34,7 @@ class StepFlowForm extends LitElement {
private _loading = false;
@property()
private _stepData?: { [key: string]: any };
private _stepData?: Record<string, any>;
@property()
private _errorMsg?: string;