@elsikora/nestjs-crud-automator
Version:
A library for automating the creation of CRUD operations in NestJS.
12 lines (11 loc) • 532 B
TypeScript
import { IApiBaseEntity } from '../../../../api-base-entity.interface';
import { TApiFunctionGetManyProperties } from '../../../../../type/decorator/api/function';
export interface IApiControllerGeneratedGetManySession {
baseProperties: TApiFunctionGetManyProperties<IApiBaseEntity>;
state: {
candidateProperties?: TApiFunctionGetManyProperties<IApiBaseEntity>;
isCandidateWhereScoped?: boolean;
isPrepared: boolean;
};
windowWhere?: TApiFunctionGetManyProperties<IApiBaseEntity>["where"];
}