chore: minor tweak

This commit is contained in:
AlexAlexandre 2021-12-08 02:41:40 -03:00
parent e6a05f4434
commit 475d6be5b0
1 changed files with 4 additions and 3 deletions

View File

@ -177,9 +177,10 @@ class RoomView extends React.Component<IRoomViewProps, any> {
done: (...args: any[]) => any;
cancel: () => void;
};
private willBlurListener?: any; // TODO remove this any
private subSubscription?: any; // TODO remove this any
private queryUnreads?: any; // TODO remove this any
private willBlurListener?: { remove(): void };
private subSubscription?: { unsubscribe(): void };
private queryUnreads?: { unsubscribe(): void };
private retryInit: any;
private retryInitTimeout?: ReturnType<typeof setTimeout>;
private retryFindCount: any;