UNPKG

@elsikora/nestjs-crud-automator

Version:

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

9 lines (8 loc) 404 B
import type { IApiBaseEntity } from '../../interface/api-base-entity.interface'; /** * Analyzes entity metadata using the MetadataStorage singleton class. * Currently only retrieves metadata but doesn't perform further operations. * @param {IApiBaseEntity} entity - The entity to analyze metadata for * @returns {void} */ export declare function analyzeEntityMetadata(entity: IApiBaseEntity): void;