mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-19 09:34:02 +00:00
* tools: enable linter for TypeScript files and code snippets * types: remove remaning namespaces * tools: remove unused Babel decorator plugin
11 lines
458 B
TypeScript
11 lines
458 B
TypeScript
import type { StatusBarOptions } from '@uppy/status-bar'
|
|
import { ToUppyProps } from './CommonTypes'
|
|
|
|
export type StatusBarProps = ToUppyProps<StatusBarOptions> & React.BaseHTMLAttributes<HTMLDivElement>
|
|
|
|
/**
|
|
* React component that renders a status bar containing upload progress and speed,
|
|
* processing progress and pause/resume/cancel controls.
|
|
*/
|
|
declare const StatusBarComponent: React.ComponentType<StatusBarProps>
|
|
export default StatusBarComponent
|