UNPKG

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

40 lines 1.11 kB
import { ProjectContext } from '../../types'; export interface PreparationsKickOffChecklistConfig { includeRiskAssessment?: boolean; detailLevel: 'basic' | 'detailed' | 'comprehensive'; customSections?: string[]; } export declare class PreparationsKickOffChecklistTemplate { private context; private config; constructor(context: ProjectContext, config?: PreparationsKickOffChecklistConfig); /** * Generate the document content */ generateContent(): Promise<string>; /** * Generate document header with metadata */ private generateHeader; /** * Generate executive summary */ private generateExecutiveSummary; /** * Generate main document sections */ private generateMainSections; /** * Example section generator for checklist items */ private generateChecklistItems; /** * Generate risk assessment section */ private generateRiskAssessment; /** * Generate conclusion */ private generateConclusion; } //# sourceMappingURL=preparationsKickOffChecklist.d.ts.map