From 45ce156e2a3c613ce654b0602394b7c284a19981 Mon Sep 17 00:00:00 2001 From: JakeSchroeder Date: Tue, 23 Sep 2025 18:32:46 -0700 Subject: [PATCH] fix: unused exports --- .../extensions/vueNodes/composables/useNodePresentation.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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