antd-management-fast-component 2.7.59 → 2.7.61

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,11 +1,5 @@
1
1
  export function Bar({ progress, animationDuration }: {
2
- progress: any;
3
- animationDuration: any;
2
+ progress?: number | undefined;
3
+ animationDuration?: number | undefined;
4
4
  }): React.JSX.Element;
5
- export namespace Bar {
6
- namespace defaultProps {
7
- let animationDuration: number;
8
- let progress: number;
9
- }
10
- }
11
5
  import React from 'react';
@@ -1,12 +1,6 @@
1
- export function Container({ animationDuration, children, isFinished }: {
2
- animationDuration: any;
1
+ export function Container({ animationDuration, isFinished, children, }: {
2
+ animationDuration?: number | undefined;
3
+ isFinished?: boolean | undefined;
3
4
  children: any;
4
- isFinished: any;
5
5
  }): React.JSX.Element;
6
- export namespace Container {
7
- namespace defaultProps {
8
- let animationDuration: number;
9
- let isFinished: boolean;
10
- }
11
- }
12
6
  import React from 'react';
@@ -1,19 +1,9 @@
1
1
  export function ProgressBar({ progressing, animationDuration, incrementDuration, minimum, showBar, showSpinner, }: {
2
- progressing: any;
3
- animationDuration: any;
4
- incrementDuration: any;
5
- minimum: any;
6
- showBar: any;
7
- showSpinner: any;
2
+ progressing?: boolean | undefined;
3
+ animationDuration?: number | undefined;
4
+ incrementDuration?: number | undefined;
5
+ minimum?: number | undefined;
6
+ showBar?: boolean | undefined;
7
+ showSpinner?: boolean | undefined;
8
8
  }): React.JSX.Element;
9
- export namespace ProgressBar {
10
- namespace defaultProps {
11
- let progressing: boolean;
12
- let animationDuration: number;
13
- let incrementDuration: number;
14
- let minimum: number;
15
- let showSpinner: boolean;
16
- let showBar: boolean;
17
- }
18
- }
19
9
  import React from 'react';