Fix validation errors (#14009)

* Fix validation errors

* fix compile

* update return type
This commit is contained in:
Charles Gagnon
2021-01-21 10:40:46 -08:00
committed by GitHub
parent 5f61becd36
commit f986b8cf78
2 changed files with 4 additions and 5 deletions

View File

@@ -77,7 +77,7 @@ export interface IModelStore {
/**
* Run all validations for the given component and return the new validation value
*/
validate(component: IComponent): Thenable<boolean>;
validate(component: IComponent): Promise<boolean>;
}
/**