@nestjs/core
Version:
Nest - modern, fast, powerful node.js web framework (@core)
13 lines (12 loc) • 437 B
TypeScript
import type { Type } from '@nestjs/common';
import { InstanceWrapper } from '../../injector/instance-wrapper.js';
import type { EnhancerSubtype } from '@nestjs/common/internal';
export interface EnhancerMetadataCacheEntry {
targetNodeId?: string;
moduleToken: string;
classRef: Type;
methodKey: string | undefined;
enhancerRef?: unknown;
enhancerInstanceWrapper?: InstanceWrapper;
subtype: EnhancerSubtype;
}