matrix-react-sdk
Version:
SDK for matrix.org using React
18 lines (17 loc) • 564 B
TypeScript
import React from "react";
import { MatrixEvent } from "matrix-js-sdk/src/matrix";
interface Props {
mxEvent: MatrixEvent;
timestamp?: JSX.Element;
}
/**
* Event tile created when we receive an m.key.verification.request event.
*
* Displays a simple message saying that a verification was requested, either by
* this user or someone else.
*
* EventTileFactory has logic meaning we only display this tile if the request
* was sent to/from this user.
*/
declare const MKeyVerificationRequest: React.FC<Props>;
export default MKeyVerificationRequest;