chore: minor tweak
This commit is contained in:
parent
e6a05f4434
commit
475d6be5b0
|
@ -177,9 +177,10 @@ class RoomView extends React.Component<IRoomViewProps, any> {
|
||||||
done: (...args: any[]) => any;
|
done: (...args: any[]) => any;
|
||||||
cancel: () => void;
|
cancel: () => void;
|
||||||
};
|
};
|
||||||
private willBlurListener?: any; // TODO remove this any
|
|
||||||
private subSubscription?: any; // TODO remove this any
|
private willBlurListener?: { remove(): void };
|
||||||
private queryUnreads?: any; // TODO remove this any
|
private subSubscription?: { unsubscribe(): void };
|
||||||
|
private queryUnreads?: { unsubscribe(): void };
|
||||||
private retryInit: any;
|
private retryInit: any;
|
||||||
private retryInitTimeout?: ReturnType<typeof setTimeout>;
|
private retryInitTimeout?: ReturnType<typeof setTimeout>;
|
||||||
private retryFindCount: any;
|
private retryFindCount: any;
|
||||||
|
|
Loading…
Reference in New Issue