@notes-sync/service
Version:
Background service for AI-powered note synchronization
21 lines (20 loc) • 472 B
TypeScript
import { AIConfig } from '@notes-sync/shared';
export interface ServiceConfig {
notesDir: string;
notesFile?: string;
debounceMs: number;
glob: string;
ignore: string[];
autoCreateDaily?: boolean;
wakeDetection?: {
enabled: boolean;
intervalMs: number;
thresholdMs: number;
};
ai?: AIConfig;
server: {
port: number;
host: string;
};
}
export declare function loadConfig(): ServiceConfig;