@cloudtower/eagle 0.25.4 → 0.25.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3 @@
1
+ import { Form as AntdForm } from "antd";
2
+ declare const Form: AntdForm;
3
+ export default Form;
@@ -1,4 +1,4 @@
1
1
  import { FormItemProps } from "antd/lib/form";
2
2
  import React from "react";
3
- declare const FormItem: React.FC<FormItemProps>;
3
+ declare const FormItem: (props: React.PropsWithChildren<FormItemProps>) => React.ReactElement;
4
4
  export default FormItem;