chore: Export distortion editor components

- Export DistortionEditor component
- Export DistortionEditorProps, EditorState, EditMode types
- Export useDistortionEditor hook for external use
This commit is contained in:
BaekRyang 2025-11-05 11:20:40 +09:00
parent 63e7bac3c7
commit f080693d32

View File

@ -2,6 +2,11 @@
export { ImageDistortion } from './components/ImageDistortion'; export { ImageDistortion } from './components/ImageDistortion';
export type { ImageDistortionProps } from './components/ImageDistortion'; export type { ImageDistortionProps } from './components/ImageDistortion';
// 에디터 (4점 사각형 + 정확한 UV 좌표계 원형 왜곡 가이드)
export { DistortionEditor } from './editor';
export type { DistortionEditorProps, EditorState, EditMode } from './editor';
export { useDistortionEditor } from './editor';
// 타입 정의 // 타입 정의
export type { export type {
Point, Point,