mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 09:05:55 +00:00
* tools: enable linter for TypeScript files and code snippets * types: remove remaning namespaces * tools: remove unused Babel decorator plugin
10 lines
402 B
TypeScript
10 lines
402 B
TypeScript
import type { ProgressBarOptions } from '@uppy/progress-bar'
|
|
import { ToUppyProps } from './CommonTypes'
|
|
|
|
export type ProgressBarProps = ToUppyProps<ProgressBarOptions> & React.BaseHTMLAttributes<HTMLDivElement>
|
|
|
|
/**
|
|
* React component that renders a progress bar at the top of the page.
|
|
*/
|
|
declare const ProgressBarComponent: React.ComponentType<ProgressBarProps>
|
|
export default ProgressBarComponent
|