UNPKG

@elsikora/nestjs-crud-automator

Version:

A library for automating the creation of CRUD operations in NestJS.

9 lines (8 loc) 531 B
import { IApiControllerReadPlan } from '../../../../../interface/class/api/controller/read'; /** * Returns the compiled generated-read plan attached to a controller method. * @param {object} target - Controller prototype that owns the generated method. * @param {string} methodName - Generated controller method name. * @returns {IApiControllerReadPlan | undefined} Stored read plan, when configured. */ export declare function ApiControllerReadPlanGet(target: object, methodName: string): IApiControllerReadPlan | undefined;