matrix-react-sdk
Version:
SDK for matrix.org using React
21 lines (20 loc) • 566 B
TypeScript
import React from "react";
interface IState {
busy: boolean;
newPersonalRule: string;
newList: string;
}
export default class MjolnirUserSettingsTab extends React.Component<{}, IState> {
constructor(props: {});
private onPersonalRuleChanged;
private onNewListChanged;
private onAddPersonalRule;
private onSubscribeList;
private removePersonalRule;
private unsubscribeFromList;
private viewListRules;
private renderPersonalBanListRules;
private renderSubscribedBanLists;
render(): React.ReactNode;
}
export {};