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