index.d.ts 355 B

12345678910
  1. /// <reference types="react" />
  2. import Line from './Line';
  3. import Circle from './Circle';
  4. export type { ProgressProps } from './interface';
  5. export { Line, Circle };
  6. declare const _default: {
  7. Line: import("react").FC<import("./interface").ProgressProps>;
  8. Circle: import("react").FC<import("./interface").ProgressProps>;
  9. };
  10. export default _default;