matrix-react-sdk
Version:
SDK for matrix.org using React
14 lines (13 loc) • 399 B
TypeScript
import React from "react";
import { Poll } from "matrix-js-sdk/src/matrix";
import { RoomPermalinkCreator } from "../../../../utils/permalinks/Permalinks";
interface Props {
poll: Poll;
requestModalClose: () => void;
permalinkCreator: RoomPermalinkCreator;
}
/**
* Content of PollHistory when a specific poll is selected
*/
export declare const PollDetail: React.FC<Props>;
export {};