From 71401b10593ea1a332401df64051bc5dd0e37197 Mon Sep 17 00:00:00 2001 From: bymyself Date: Sat, 13 Dec 2025 03:43:58 -0800 Subject: [PATCH] remove unused export --- src/core/graph/state/graphStateStore.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/core/graph/state/graphStateStore.ts b/src/core/graph/state/graphStateStore.ts index 4e609dbb4..edab38824 100644 --- a/src/core/graph/state/graphStateStore.ts +++ b/src/core/graph/state/graphStateStore.ts @@ -3,23 +3,23 @@ import { customRef } from 'vue' import type { NodeLocatorId } from '@/types/nodeIdentification' -export interface NodeState { +interface NodeState { hasError: boolean } -export interface SetNodeErrorCommand { +interface SetNodeErrorCommand { type: 'SetNodeError' version: 1 nodeId: NodeLocatorId hasError: boolean } -export interface ClearAllErrorsCommand { +interface ClearAllErrorsCommand { type: 'ClearAllErrors' version: 1 } -export type GraphStateCommand = SetNodeErrorCommand | ClearAllErrorsCommand +type GraphStateCommand = SetNodeErrorCommand | ClearAllErrorsCommand export const useGraphStateStore = defineStore('graphState', () => { const nodes = new Map()