forgeplus-react/node_modules/rsuite/lib/Progress/Progress.d.ts

12 lines
237 B
TypeScript

import ProgressLine from './ProgressLine';
import ProgressCircle from './ProgressCircle';
interface Progress {
Line: typeof ProgressLine;
Circle: typeof ProgressCircle;
}
declare const Progress: Progress;
export default Progress;