@intuitionrobotics/bug-report
Version:
19 lines (18 loc) • 502 B
TypeScript
import * as React from "react";
type Props = {
component?: React.ReactNode;
children?: React.ReactNode;
};
type State = {
error?: Error;
errorInfo?: React.ErrorInfo;
description?: string;
subject?: string;
};
export declare class BugReport extends React.Component<Props, State> {
constructor(props: Props);
componentDidCatch(error: Error, errorInfo: React.ErrorInfo): void;
showAppConfirmationDialogExample: () => void;
render(): React.JSX.Element;
}
export {};