Convert HeaderButton to TS

This commit is contained in:
Swapnil Raj 2020-07-18 17:14:20 +05:30
parent 0f59e34a3a
commit 23e4b67a69
4 changed files with 9 additions and 7 deletions

View file

@ -29,8 +29,10 @@ export interface SetRightPanelPhasePayload extends ActionPayload {
export interface SetRightPanelPhaseRefireParams {
// XXX: Fix after the types are defiend in matrix-js-sdk
// No appropriate types exist yet for the fields
members: any;
verificationRequest: typeof VerificationRequest;
groudId: string;
groupRoomId: string;
members?: any;
verificationRequest?: typeof VerificationRequest;
groudId?: string;
groupRoomId?: string;
// XXX: 'view_3pid_invite' action's payload
event?: any;
}