From b77f028097617927043137c4dc0f4d488b199600 Mon Sep 17 00:00:00 2001 From: Austin Mroz Date: Mon, 22 Dec 2025 14:01:25 -0800 Subject: [PATCH] Prune unused export --- src/composables/graph/useGraphNodeManager.ts | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/composables/graph/useGraphNodeManager.ts b/src/composables/graph/useGraphNodeManager.ts index 4482f9433..3cecdd7da 100644 --- a/src/composables/graph/useGraphNodeManager.ts +++ b/src/composables/graph/useGraphNodeManager.ts @@ -198,17 +198,6 @@ export function safeWidgetMapper( } } -export function isValidWidgetValue(value: unknown): value is WidgetValue { - return ( - value === null || - value === undefined || - typeof value === 'string' || - typeof value === 'number' || - typeof value === 'boolean' || - typeof value === 'object' - ) -} - export function useGraphNodeManager(graph: LGraph): GraphNodeManager { // Get layout mutations composable const { createNode, deleteNode, setSource } = useLayoutMutations()