fix: unused exports

This commit is contained in:
JakeSchroeder
2025-09-23 18:32:46 -07:00
parent a3f8b50bbd
commit 45ce156e2a

View File

@@ -3,7 +3,7 @@ import { type ComputedRef, type Ref, computed, unref } from 'vue'
import type { VueNodeData } from '@/composables/graph/useGraphNodeManager'
import { cn } from '@/utils/tailwindUtil'
export interface NodePresentationOptions {
interface NodePresentationOptions {
readonly?: boolean
isPreview?: boolean
scale?: number
@@ -18,7 +18,7 @@ export interface NodePresentationOptions {
shouldHandleNodePointerEvents?: ComputedRef<boolean>
}
export interface NodePresentationState {
interface NodePresentationState {
// Classes
containerBaseClasses: ComputedRef<string>
separatorClasses: string