@uppy/status-bar
Version:
A progress bar for Uppy, with many bells and whistles.
15 lines (13 loc) • 480 B
text/typescript
import type { UIPluginOptions } from '@uppy/core'
import type { LocaleStrings } from '@uppy/utils'
import type StatusBarLocale from './locale.js'
export interface StatusBarOptions extends UIPluginOptions {
showProgressDetails?: boolean
hideUploadButton?: boolean
hideAfterFinish?: boolean
hideRetryButton?: boolean
hidePauseResumeButton?: boolean
hideCancelButton?: boolean
doneButtonHandler?: (() => void) | null
locale?: LocaleStrings<typeof StatusBarLocale>
}