@elsikora/nestjs-crud-automator
Version:
A library for automating the creation of CRUD operations in NestJS.
7 lines (6 loc) • 324 B
TypeScript
/**
* Queues execution until auto DTO context becomes available on the provided prototype.
* @param {object} target - DTO prototype awaiting context.
* @param {() => void} executor - Callback to execute once context is ready.
*/
export declare function QueueAutoContextRetry(target: object, executor: () => void): void;