mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-23 18:29:09 +00:00
14 lines
485 B
TypeScript
14 lines
485 B
TypeScript
import type { UIPluginOptions } from '@uppy/core'
|
|
import type { LocaleStrings } from '@uppy/core/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>
|
|
}
|