@uppy/dashboard
Version:
Universal UI plugin for Uppy.
12 lines (10 loc) • 335 B
text/typescript
import type { UIPluginOptions } from '@uppy/core'
export interface StatusBarOptions extends UIPluginOptions {
hideProgressDetails?: boolean
hideUploadButton?: boolean
hideAfterFinish?: boolean
hideRetryButton?: boolean
hidePauseResumeButton?: boolean
hideCancelButton?: boolean
doneButtonHandler?: (() => void) | null
}