UNPKG

@nestjs/core

Version:

Nest - modern, fast, powerful node.js web framework (@core)

13 lines (12 loc) 425 B
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; }