@elsikora/nestjs-crud-automator
Version:
A library for automating the creation of CRUD operations in NestJS.
9 lines (8 loc) • 475 B
TypeScript
import { IApiControllerReadPlan } from '../../../../interface/class/api/controller/read';
/**
* Prevents low-level controller facades from silently ignoring an uncompiled read scope.
* @param {object} routeConfig - Route configuration supplied to the facade.
* @param {IApiControllerReadPlan} [readPlan] - Factory-compiled read plan.
* @returns {void}
*/
export declare function ApiControllerReadPlanAssert(routeConfig: object, readPlan?: IApiControllerReadPlan): void;