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