UNPKG

matrix-react-sdk

Version:
26 lines (25 loc) 697 B
import React from "react"; import { ContinueKind } from "../auth/InteractiveAuthEntryComponents"; interface IProps { onFinished: (success?: boolean) => void; } interface IState { shouldErase: boolean; errStr: string | null; authData: any; authEnabled: boolean; bodyText?: string; continueText?: string; continueKind?: ContinueKind; } export default class DeactivateAccountDialog extends React.Component<IProps, IState> { constructor(props: IProps); private onStagePhaseChange; private onUIAuthFinished; private onUIAuthComplete; private onEraseFieldChange; private onCancel; private initAuth; render(): React.ReactNode; } export {};