@ansible/ansible-ui-framework 2.4.193 → 2.4.194

Sign up to get free protection for your applications and to get access to all the features.
@@ -10,6 +10,6 @@ declare class ErrorBoundary extends Component<Props, State> {
10
10
  state: State;
11
11
  static getDerivedStateFromError(_: Error): State;
12
12
  componentDidCatch(error: Error, errorInfo: ErrorInfo): void;
13
- render(): string | number | boolean | import("react").ReactFragment | import("react/jsx-runtime").JSX.Element | null | undefined;
13
+ render(): string | number | boolean | Iterable<ReactNode> | import("react/jsx-runtime").JSX.Element | null | undefined;
14
14
  }
15
15
  export default ErrorBoundary;