StatusBarOptions.ts 432 B

12345678910111213
  1. import type { UIPluginOptions } from '@uppy/core/lib/UIPlugin.js'
  2. import type StatusBarLocale from './locale.ts'
  3. export interface StatusBarOptions extends UIPluginOptions {
  4. showProgressDetails?: boolean
  5. hideUploadButton?: boolean
  6. hideAfterFinish?: boolean
  7. hideRetryButton?: boolean
  8. hidePauseResumeButton?: boolean
  9. hideCancelButton?: boolean
  10. doneButtonHandler?: (() => void) | null
  11. locale?: typeof StatusBarLocale
  12. }