fix lint yet again

pull/21833/head
Matthew Hodgson 2020-11-09 01:37:17 +00:00
parent ef09ff6615
commit 99fb62cc68
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ interface IRule<T, D = void> {
interface IArgs<T, D = void> {
rules: IRule<T, D>[];
description(this: T, derivedData: D): React.ReactChild;
hideDescriptionIfValid: Boolean;
hideDescriptionIfValid?: Boolean;
deriveData?(data: Data): Promise<D>;
}