/** * @rageshpikalmunde/rp-image-editor * Lightweight image editor with crop, zoom, rotate, draw, text, eraser, undo/redo */ export { RpImageEditor } from './editor.js'; export { openEditorModal } from './modal.js'; export type { ModalOptions } from './modal.js'; export type { RpEditorConfig, RpEditorTheme, RpEditorResult, CropAspectRatio, EditorMode, ShapeType, RpEditorEvents, LoadedImageInfo, } from './types/index.js'; export { getLocalePack, resolveLanguage } from './i18n/index.js'; export type { LanguageCode, LocalePack, LocalePackOverrides } from './i18n/index.js'; export { processImage, isHeicFile } from './utils/image-processing.js'; export { isIOS, isSafari, isCapacitor, isTouchDevice, getMaxResolution } from './utils/platform.js'; export { mergeConfig, DEFAULT_CONFIG } from './utils/defaults.js';