wargerm 0.2.36 → 0.2.41

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.
@@ -1,6 +1,6 @@
1
- import React, { MutableRefObject } from 'react';
1
+ import React from 'react';
2
2
  import { ReactNode } from 'react';
3
- import { FormInstance, FormProps } from 'antd';
3
+ import { FormProps } from 'antd';
4
4
  interface ColumnProps {
5
5
  title: string;
6
6
  dataIndex: string;
@@ -96,7 +96,7 @@ declare type Props = {
96
96
  rowSelection?: IRowSelection;
97
97
  scroll?: Iscroll;
98
98
  pagination?: false | Record<string, any>;
99
- formRef?: MutableRefObject<FormInstance>;
99
+ formRef?: any;
100
100
  children?: ReactNode;
101
101
  form?: FormProps;
102
102
  search?: Isearch | false;