Revert "Cleanup types"

This reverts commit 97cef335e8.
This commit is contained in:
Swapnil Raj 2020-07-30 11:45:49 +05:30
parent 97cef335e8
commit 9aa128a6e8
4 changed files with 2 additions and 5 deletions

View file

@ -18,12 +18,10 @@ import { RightPanelPhases } from "../../stores/RightPanelStorePhases";
import { SetRightPanelPhaseRefireParams } from "./SetRightPanelPhasePayload";
import { ActionPayload } from "../payloads";
import { Action } from "../actions";
import { VerificationRequest } from "matrix-js-sdk/src/crypto/verification/request/VerificationRequest";
interface AfterRightPanelPhaseChangeAction extends ActionPayload {
action: Action.AfterRightPanelPhaseChange;
phase: RightPanelPhases;
verificationRequestPromise?: Promise<VerificationRequest>;
}
export type AfterRightPanelPhaseChangePayload

View file

@ -24,7 +24,7 @@ export interface SetRightPanelPhasePayload extends ActionPayload {
action: Action.SetRightPanelPhase;
phase: RightPanelPhases;
refireParams?: SetRightPanelPhaseRefireParams;
refireParams: SetRightPanelPhaseRefireParams;
}
export interface SetRightPanelPhaseRefireParams {