UNPKG

@iobroker/adapter-react-v5

Version:

React components to develop ioBroker interfaces with react.

19 lines (18 loc) 440 B
/** * Copyright 2018-2023 Denis Haev (bluefox) <dogafox@gmail.com> * * MIT License * */ import React, { Component, type JSX } from 'react'; interface DialogErrorProps { title?: string; text: string | React.JSX.Element | React.JSX.Element[]; onClose?: () => void; fullWidth?: boolean; } export declare class DialogError extends Component<DialogErrorProps> { handleOk(): void; render(): JSX.Element; } export {};