mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-25 11:14:05 +00:00
13 lines
313 B
TypeScript
13 lines
313 B
TypeScript
import { Uppy } from './CommonTypes';
|
|
|
|
export interface ProgressBarProps {
|
|
uppy: Uppy;
|
|
fixed?: boolean;
|
|
hideAfterFinish?: boolean;
|
|
}
|
|
|
|
/**
|
|
* React component that renders a progress bar at the top of the page.
|
|
*/
|
|
declare const ProgressBar: React.ComponentType<ProgressBarProps>;
|
|
export default ProgressBar;
|