mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-05 08:10:14 +00:00
7 lines
126 B
TypeScript
7 lines
126 B
TypeScript
export interface ChatSettings {
|
|
mode: "plan" | "act"
|
|
}
|
|
|
|
export const DEFAULT_CHAT_SETTINGS: ChatSettings = {
|
|
mode: "act",
|
|
}
|