Revert "chore: make TransformState interface non-exported to satisfy knip pre-push"

This reverts commit 110ecf31da.
This commit is contained in:
Benjamin Lu
2025-09-09 17:05:40 -07:00
parent 110ecf31da
commit 9786ecfb97

View File

@@ -2,7 +2,7 @@ import type { InjectionKey } from 'vue'
import type { Point } from '@/renderer/core/layout/types'
interface TransformState {
export interface TransformState {
screenToCanvas: (p: Point) => Point
canvasToScreen: (p: Point) => Point
camera?: { x: number; y: number; z: number }