UNPKG

@skbkontur/cassandra-distributed-task-queue-ui

Version:

.NET library implementing distributed task queue machinery using Apache Cassandra

16 lines (15 loc) 521 B
import { Component, ReactElement } from "react"; interface ErrorHandlingContainerState { isFatal: boolean; error: Error | null; stack: string | null; showModal: boolean; } export declare class ErrorHandlingContainer extends Component<{}, ErrorHandlingContainerState> { state: ErrorHandlingContainerState; oldOnunhandledrejection: null | ((e: PromiseRejectionEvent, ...rest: any[]) => void); componentDidMount(): void; componentWillUnmount(): void; render(): ReactElement; } export {};