adpa-enterprise-framework-automation
Version:
Modular, standards-compliant Node.js/TypeScript automation framework for enterprise requirements, project, and data management. Provides CLI and API for BABOK v3, PMBOK 7th Edition, and DMBOK 2.0 (in progress). Production-ready Express.js API with TypeSpe
15 lines • 611 B
TypeScript
import type { ProjectContext } from '../../ai/types';
import type { DocumentProcessor, DocumentOutput } from '../../documentGenerator/types';
/**
* Processor for the Program Project Charter document.
*/
export declare class ProgramCharterProcessor implements DocumentProcessor {
private aiProcessor;
constructor();
/**
* Detects [AI_SYNTHESIS: ...] tags and generates text for each, replacing the tag with AI-generated content.
*/
private synthesizeSectionContent;
process(context: ProjectContext): Promise<DocumentOutput>;
}
//# sourceMappingURL=ProgramCharterProcessor.d.ts.map