feat: 添加 PromptSection 类型定义

This commit is contained in:
2026-06-11 16:28:30 +08:00
parent add8c7c0ea
commit b709a01df3

View File

@@ -0,0 +1,6 @@
export type SectionKind = "head" | "context" | "prompt" | "guide" | "warn";
export interface PromptSection {
kind: SectionKind;
content: string;
}