Skip to content

Commit

Permalink
@uppy/provider-views: fix incorrect import (#5588)
Browse files Browse the repository at this point in the history
  • Loading branch information
Murderlon authored Jan 9, 2025
1 parent f4b40b6 commit 0215c5a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions packages/@uppy/core/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,15 @@ export {
type UppyEventMap,
type UppyOptions,
} from './Uppy.js'

export { default as UIPlugin } from './UIPlugin.js'
export type { UIPluginOptions } from './UIPlugin.js'

export { default as BasePlugin } from './BasePlugin.js'
export type { DefinePluginOpts, PluginOpts } from './BasePlugin.js'

export { debugLogger } from './loggers.js'

export type { Store } from '@uppy/store-default'

export type { UIPluginOptions } from './UIPlugin.js'

export type { UppyFile, Meta, Body } from '@uppy/utils/lib/UppyFile'
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import type { CompanionFile } from '@uppy/utils/lib/CompanionFile'
import classNames from 'classnames'
import type { ValidateableFile } from '@uppy/core/lib/Restricter.js'
import remoteFileObjToLocal from '@uppy/utils/lib/remoteFileObjToLocal'
import type { DefinePluginOpts } from '@uppy/core/src/BasePlugin.js'
import type { DefinePluginOpts } from '@uppy/core'
import SearchInput from '../SearchInput.jsx'
import Browser from '../Browser.jsx'

Expand Down

0 comments on commit 0215c5a

Please sign in to comment.