Skip to content

Commit

Permalink
add missing exports (#5009)
Browse files Browse the repository at this point in the history
  • Loading branch information
aduh95 committed Mar 18, 2024
1 parent 700944e commit 730459d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@uppy/drag-drop/src/DragDrop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { h, type ComponentChild } from 'preact'
import packageJson from '../package.json'
import locale from './locale.ts'

interface DragDropOptions extends UIPluginOptions {
export interface DragDropOptions extends UIPluginOptions {
inputName?: string
allowMultipleFiles?: boolean
width?: string | number
Expand Down
1 change: 1 addition & 0 deletions packages/@uppy/drag-drop/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export { default } from './DragDrop.tsx'
export type { DragDropOptions } from './DragDrop.tsx'
2 changes: 2 additions & 0 deletions packages/@uppy/progress-bar/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
export { default } from './ProgressBar.tsx'

export type { ProgressBarOptions } from './ProgressBar.tsx'

0 comments on commit 730459d

Please sign in to comment.