interface IRequestsMap {
    getRequest(event: MatrixEvent): undefined | VerificationRequest;
    getRequestByChannel(
        channel: IVerificationChannel,
    ): undefined | VerificationRequest;
    setRequest(event: MatrixEvent, request: VerificationRequest): void;
    setRequestByChannel(
        channel: IVerificationChannel,
        request: VerificationRequest,
    ): void;
}

Implemented by

Methods