disclaw/dist/config/loader.d.ts
2026-04-08 14:24:45 +02:00

14 lines
No EOL
451 B
TypeScript

export interface DisclawConfig {
workspaces_root: string;
management_channel: string;
claude_command: string;
claude_timeout_seconds: number;
}
export interface EnvConfig {
DISCORD_BOT_TOKEN: string;
DISCORD_GUILD_ID?: string;
CLAUDE_PATH?: string;
}
export declare function loadEnv(rootDir: string): EnvConfig;
export declare function loadDisclawConfig(rootDir: string): DisclawConfig;
//# sourceMappingURL=loader.d.ts.map