UNPKG

type-graphql

Version:

Create GraphQL schema and resolvers with TypeScript, using classes and decorators!

9 lines (8 loc) 250 B
import { GraphQLError } from "graphql"; export declare class AuthenticationError extends GraphQLError { readonly extensions: { code: "UNAUTHENTICATED"; [attributeName: string]: unknown; }; constructor(message?: string); }