1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-11 20:22:36 +03:00

fix lint yet again

This commit is contained in:
Matthew Hodgson
2020-11-09 01:37:17 +00:00
parent ef09ff6615
commit 99fb62cc68

View File

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