diff --git a/src/renderer/extensions/vueNodes/composables/useNodePresentation.ts b/src/renderer/extensions/vueNodes/composables/useNodePresentation.ts index 89440ca8e..607285d08 100644 --- a/src/renderer/extensions/vueNodes/composables/useNodePresentation.ts +++ b/src/renderer/extensions/vueNodes/composables/useNodePresentation.ts @@ -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 } -export interface NodePresentationState { +interface NodePresentationState { // Classes containerBaseClasses: ComputedRef separatorClasses: string