fix ui: custom transformer error

This commit is contained in:
musistudio
2025-08-04 13:18:57 +08:00
parent 38c6cf0c9a
commit 7bb816ad03
4 changed files with 27 additions and 28 deletions

View File

@@ -22,16 +22,15 @@ export interface RouterConfig {
}
export interface Transformer {
name: string;
name?: string;
path: string;
project: string;
parameters?: Record<string, any>;
options?: Record<string, any>;
}
export interface Config {
Providers: Provider[];
Router: RouterConfig;
Transformers: Transformer[];
transformers: Transformer[];
// Top-level settings
LOG: boolean;
CLAUDE_PATH: string;