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

11 lines 458 B
import mongoose, { Document } from 'mongoose'; import { DocumentReview } from '../types/review.js'; export interface IDocumentReview extends Omit<DocumentReview, 'id'>, Document { id: string; } export declare const DocumentReviewModel: mongoose.Model<IDocumentReview, {}, {}, {}, mongoose.Document<unknown, {}, IDocumentReview, {}, {}> & IDocumentReview & Required<{ _id: unknown; }> & { __v: number; }, any>; //# sourceMappingURL=Review.d.ts.map