Initial commit - Event Planner application
This commit is contained in:
20
node_modules/@nestjs/common/interfaces/features/execution-context.interface.d.ts
generated
vendored
Normal file
20
node_modules/@nestjs/common/interfaces/features/execution-context.interface.d.ts
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
import { Type } from '../index';
|
||||
import { ArgumentsHost } from './arguments-host.interface';
|
||||
/**
|
||||
* Interface describing details about the current request pipeline.
|
||||
*
|
||||
* @see [Execution Context](https://docs.nestjs.com/guards#execution-context)
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export interface ExecutionContext extends ArgumentsHost {
|
||||
/**
|
||||
* Returns the *type* of the controller class which the current handler belongs to.
|
||||
*/
|
||||
getClass<T = any>(): Type<T>;
|
||||
/**
|
||||
* Returns a reference to the handler (method) that will be invoked next in the
|
||||
* request pipeline.
|
||||
*/
|
||||
getHandler(): Function;
|
||||
}
|
||||
Reference in New Issue
Block a user