UNPKG

climb-onyx-gui

Version:
14 lines (13 loc) 471 B
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 };