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

This commit is contained in:
Benjamin Lu
2025-09-09 16:22:01 -07:00
parent 428752619c
commit 110ecf31da

View File

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