uppy/packages/@uppy/react/src/StatusBar.d.ts
Antoine du Hamel 5630f7dc07
tools: enable linter for TypeScript (#2997)
* tools: enable linter for TypeScript files and code snippets

* types: remove remaning namespaces

* tools: remove unused Babel decorator plugin
2021-07-13 14:28:14 +02:00

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