From c607ff4a4f6a8dcd48bcb710efb7ed04720f5be0 Mon Sep 17 00:00:00 2001 From: William Valentin Date: Thu, 5 Feb 2026 22:23:25 -0800 Subject: [PATCH] feat(config): export CronJobConfig type from config index --- src/config/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/index.ts b/src/config/index.ts index d6407d4..5d70ff7 100644 --- a/src/config/index.ts +++ b/src/config/index.ts @@ -1,2 +1,2 @@ export { loadConfig } from './loader.js'; -export { configSchema, type Config, type TelegramConfig, type ModelConfig } from './schema.js'; +export { configSchema, type Config, type TelegramConfig, type ModelConfig, type CronJobConfig } from './schema.js';