UNPKG

250 BTypeScriptView Raw
1import { GraphQLError } from "graphql";
2export declare class AuthenticationError extends GraphQLError {
3 readonly extensions: {
4 code: "UNAUTHENTICATED";
5 [attributeName: string]: unknown;
6 };
7 constructor(message?: string);
8}