climb-onyx-gui
Version:
Onyx Graphical User Interface
14 lines (13 loc) • 471 B
TypeScript
interface ErrorModalContentsProps {
error: Error | null;
message?: string;
}
interface ErrorModalProps extends ErrorModalContentsProps {
show: boolean;
onHide: () => void;
title: string;
}
declare function ErrorModalContents(props: ErrorModalContentsProps): import("react/jsx-runtime").JSX.Element;
declare function ErrorModal(props: ErrorModalProps): import("react/jsx-runtime").JSX.Element;
export default ErrorModal;
export { ErrorModalContents };