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

Implemented by

Methods