Initial commit - Event Planner application
This commit is contained in:
19
node_modules/@nestjs/core/helpers/execution-context-host.d.ts
generated
vendored
Normal file
19
node_modules/@nestjs/core/helpers/execution-context-host.d.ts
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
import { ExecutionContext } from '@nestjs/common';
|
||||
import { Type } from '@nestjs/common/interfaces';
|
||||
import { ContextType, HttpArgumentsHost, RpcArgumentsHost, WsArgumentsHost } from '@nestjs/common/interfaces/features/arguments-host.interface';
|
||||
export declare class ExecutionContextHost implements ExecutionContext {
|
||||
private readonly args;
|
||||
private readonly constructorRef;
|
||||
private readonly handler;
|
||||
private contextType;
|
||||
constructor(args: any[], constructorRef?: Type<any> | null, handler?: Function | null);
|
||||
setType<TContext extends string = ContextType>(type: TContext): void;
|
||||
getType<TContext extends string = ContextType>(): TContext;
|
||||
getClass<T = any>(): Type<T>;
|
||||
getHandler(): Function;
|
||||
getArgs<T extends Array<any> = any[]>(): T;
|
||||
getArgByIndex<T = any>(index: number): T;
|
||||
switchToRpc(): RpcArgumentsHost;
|
||||
switchToHttp(): HttpArgumentsHost;
|
||||
switchToWs(): WsArgumentsHost;
|
||||
}
|
||||
Reference in New Issue
Block a user