UNPKG

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