From f080693d329e6f90dd0267fab93499e19ae708c0 Mon Sep 17 00:00:00 2001 From: BaekRyang Date: Wed, 5 Nov 2025 11:20:40 +0900 Subject: [PATCH] chore: Export distortion editor components - Export DistortionEditor component - Export DistortionEditorProps, EditorState, EditMode types - Export useDistortionEditor hook for external use --- src/index.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/index.ts b/src/index.ts index c2f2964..574caa7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,6 +2,11 @@ export { ImageDistortion } 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 { Point,