@elsikora/nestjs-crud-automator
Version:
A library for automating the creation of CRUD operations in NestJS.
8 lines (7 loc) • 462 B
TypeScript
import { IApiControllerIdentityPlan } from '../../../../../interface/class/api/controller/identity-plan.interface';
/**
* Reads a generated GET identity plan from controller method metadata.
* @param {object} handler - Exact generated handler function.
* @returns {IApiControllerIdentityPlan | undefined} Stored identity plan, when configured.
*/
export declare function ApiControllerIdentityPlanGet(handler: object): IApiControllerIdentityPlan | undefined;