@skbkontur/cassandra-distributed-task-queue-ui
Version:
.NET library implementing distributed task queue machinery using Apache Cassandra
23 lines (22 loc) • 681 B
TypeScript
import { ReactElement, Component } from "react";
interface ErrorHandlingContainerModalState {
showStack: boolean;
}
interface ErrorHandlingContainerModalProps {
canClose: boolean;
onClose: () => void;
message: string;
stack: Nullable<string>;
serverStack: Nullable<string>;
}
export declare class ErrorHandlingContainerModal extends Component<ErrorHandlingContainerModalProps, ErrorHandlingContainerModalState> {
state: ErrorHandlingContainerModalState;
private theme;
componentDidMount(): void;
componentWillUnmount(): void;
private handleKeyPress;
render(): ReactElement;
private renderMain;
private copyData;
}
export {};