import { ContextType, ExecutionContext } from '@nestjs/common'; import { ExecutionContextHost } from '@nestjs/core/helpers/execution-context-host'; import { GraphQLArgumentsHost } from './gql-arguments-host'; export declare type GqlContextType = 'graphql' | ContextType; export declare type GraphQLExecutionContext = GqlExecutionContext; export declare class GqlExecutionContext extends ExecutionContextHost implements GraphQLArgumentsHost { static create(context: ExecutionContext): GqlExecutionContext; getType(): TContext; getRoot(): T; getArgs(): T; getContext(): T; getInfo(): T; } //# sourceMappingURL=gql-execution-context.d.ts.map