Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - database/ (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
618 B
TypeScript
21 lines
618 B
TypeScript
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;
|
|
}
|