mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
14 lines
412 B
TypeScript
14 lines
412 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;
|
|
}
|