mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-23 02:08:30 +00:00
14 lines
388 B
TypeScript
14 lines
388 B
TypeScript
import { Uppy } from './CommonTypes';
|
|
|
|
export interface StatusBarProps {
|
|
uppy: Uppy;
|
|
showProgressDetails?: boolean;
|
|
hideAfterFinish?: boolean;
|
|
}
|
|
|
|
/**
|
|
* React component that renders a status bar containing upload progress and speed,
|
|
* processing progress and pause/resume/cancel controls.
|
|
*/
|
|
declare const StatusBar: React.ComponentType<StatusBarProps>;
|
|
export default StatusBar;
|