From 61d29ea106edd34765ff3041e6d5c079b3547d70 Mon Sep 17 00:00:00 2001 From: npmrun <1549469775@qq.com> Date: Fri, 7 Aug 2026 19:24:55 +0800 Subject: [PATCH] refactor: remove redundant export of MessagePart and MessagePartType --- app/composables/useAgentChat.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/composables/useAgentChat.ts b/app/composables/useAgentChat.ts index 824a7ed..b481be7 100644 --- a/app/composables/useAgentChat.ts +++ b/app/composables/useAgentChat.ts @@ -4,8 +4,6 @@ import { useAuthSession } from "./useAuthSession"; import { useAgentRateLimit } from "./useAgentRateLimit"; import type { MessagePart, MessagePartType } from "../types/chat"; -export type { MessagePart, MessagePartType } from "../types/chat"; - export interface AgentMessage { id: string; role: "user" | "assistant";