@elsikora/nestjs-crud-automator
Version:
A library for automating the creation of CRUD operations in NestJS.
7 lines (6 loc) • 306 B
TypeScript
/**
* Pops DTO auto-context from the provided DTO prototype.
* @param {object} target - DTO prototype to update.
* @param {WeakSet<object>} [visited] - Set of visited prototypes to avoid infinite recursion.
*/
export declare function DtoAutoContextPop(target: object, visited?: WeakSet<object>): void;