recoder-code
Version:
🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!
13 lines (12 loc) • 425 B
TypeScript
import { Type } from '@nestjs/common';
import { EnhancerSubtype } from '@nestjs/common/constants';
import { InstanceWrapper } from '../../injector/instance-wrapper';
export interface EnhancerMetadataCacheEntry {
targetNodeId?: string;
moduleToken: string;
classRef: Type;
methodKey: string | undefined;
enhancerRef?: unknown;
enhancerInstanceWrapper?: InstanceWrapper;
subtype: EnhancerSubtype;
}