Skip to content

Commit

Permalink
Merge pull request #13975 from ckeditor/ck/13868-fix-exports-in-image…
Browse files Browse the repository at this point in the history
…-package

Other (image): Change export type to export for ckeditor5-image plugins. Closes #13868.
  • Loading branch information
arkflpc authored Apr 26, 2023
2 parents d07800c + d81f030 commit 5b3f519
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/ckeditor5-image/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ export { default as ImageUploadEditing, type ImageUploadCompleteEvent } from './
export { default as ImageUploadProgress } from './imageupload/imageuploadprogress';
export { default as ImageUploadUI } from './imageupload/imageuploadui';
export { default as PictureEditing } from './pictureediting';
export { default as ImageBlock } from './imageblock';
export { default as ImageInline } from './imageinline';
export { default as ImageInsertViaUrl } from './imageinsertviaurl';
export { default as ImageUtils } from './imageutils';
export { default as ImageBlockEditing } from './image/imageblockediting';
export { default as ImageCaptionUI } from './imagecaption/imagecaptionui';

export type { ImageConfig } from './imageconfig';
export type { default as ImageBlock } from './imageblock';
export type { default as ImageInline } from './imageinline';
export type { default as ImageInsertViaUrl } from './imageinsertviaurl';
export type { default as ImageUtils } from './imageutils';
export type { default as ImageBlockEditing } from './image/imageblockediting';
export type { default as ImageCaptionUI } from './imagecaption/imagecaptionui';
export type { default as ImageTypeCommand } from './image/imagetypecommand';
export type { default as InsertImageCommand } from './image/insertimagecommand';
export type { default as ReplaceImageSourceCommand } from './image/replaceimagesourcecommand';
Expand Down

0 comments on commit 5b3f519

Please sign in to comment.