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
8 lines • 384 B
TypeScript
import type { DocumentProcessor } from './types.js';
/**
* Dynamically loads and returns a processor instance for the given task key.
* @param key Document key as defined in processor-config.json
* @throws Error if no entry or class cannot be found
*/
export declare function createProcessor(key: string): Promise<DocumentProcessor>;
//# sourceMappingURL=ProcessorFactory.d.ts.map