matrix-react-sdk
Version:
SDK for matrix.org using React
24 lines (23 loc) • 682 B
TypeScript
import React from "react";
interface IProps {
newVersion: string;
version: string;
onFinished: (success: boolean) => void;
}
type State = Partial<Record<(typeof REPOS)[number], null | string | Commit[]>>;
interface Commit {
sha: string;
html_url: string;
commit: {
message: string;
};
}
declare const REPOS: readonly ["element-hq/element-web", "element-hq/matrix-react-sdk", "matrix-org/matrix-js-sdk"];
export default class ChangelogDialog extends React.Component<IProps, State> {
constructor(props: IProps);
private fetchChanges;
componentDidMount(): void;
private elementsForCommit;
render(): React.ReactNode;
}
export {};