UNPKG

matrix-react-sdk

Version:
11 lines (10 loc) 365 B
import React from "react"; import { IDevtoolsProps } from "./devtools/BaseTool"; export type Tool = React.FC<IDevtoolsProps> | ((props: IDevtoolsProps) => JSX.Element); interface IProps { roomId: string; threadRootId?: string | null; onFinished(finished?: boolean): void; } declare const DevtoolsDialog: React.FC<IProps>; export default DevtoolsDialog;