synos-helena 21.14.2 → 21.14.3-beta.0

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.
package/lib/index.d.ts CHANGED
@@ -60,9 +60,9 @@ import { DividerProps } from 'antd/lib/divider';
60
60
  import { DrawerProps } from 'antd/lib/drawer';
61
61
  import { DropDownProps } from 'antd/lib/dropdown';
62
62
  import { TableProps } from 'antd';
63
+ import { ReactNode } from 'react';
63
64
  import { Form } from 'antd';
64
65
  import React, { ReactNode } from 'react';
65
- import { ReactNode } from 'react';
66
66
  import { HLHeaderButtonPropTypes } from 'src/HLHeaderButton';
67
67
  import { HLHeaderSearchPropTypes } from 'src/HLHeaderSearch';
68
68
  import HLHealthCheck from 'src/HLHealthCheck/HLHealthCheck';
@@ -366,6 +366,16 @@ export type HLEditTablePropTypes = TableProps & {
366
366
  };
367
367
  export const HLEditTable: React.FC<HLEditTablePropTypes>;
368
368
 
369
+
370
+ export interface ErrorPropTypes {
371
+ size?: 'small' | 'big' | 'page' | string;
372
+ gray?: boolean;
373
+ content?: ReactNode;
374
+ icon?: ReactNode;
375
+ }
376
+
377
+ export const Error: React.FC<ErrorPropTypes>;
378
+
369
379
  export interface Page500PropTypes {
370
380
  supportPhone: string;
371
381
  }