@skbkontur/cassandra-distributed-task-queue-ui
Version:
.NET library implementing distributed task queue machinery using Apache Cassandra
16 lines (15 loc) • 504 B
TypeScript
import React from "react";
interface ErrorHandlingContainerState {
isFatal: boolean;
error: Error | null;
stack: string | null;
showModal: boolean;
}
export declare class ErrorHandlingContainer extends React.Component<{}, ErrorHandlingContainerState> {
state: ErrorHandlingContainerState;
oldOnunhandledrejection: null | ((e: PromiseRejectionEvent, ...rest: any[]) => void);
componentDidMount(): void;
componentWillUnmount(): void;
render(): JSX.Element;
}
export {};