/** * Update module * * Provides incremental documentation update functionality. * Coordinates state management, change detection, and orphan cleanup. */ export { DocumentationOrchestrator as UpdateOrchestrator, createUpdateOrchestrator, type UpdatePlan, } from '../orchestration/orchestrator.js'; export { cleanupOrphans, cleanupEmptyDirectoryDocs, getAffectedDirectories, } from './orphan-cleaner.js'; export type { UpdatePlanOptions, UpdateResult, UpdateProgress, CleanupResult, } from './types.js'; //# sourceMappingURL=index.d.ts.map