graphql-helix
Version:
A highly evolved GraphQL HTTP Server 🧬
16 lines (15 loc) • 374 B
TypeScript
export declare class HttpError extends Error {
status: number;
headers?: {
name: string;
value: string;
}[];
graphqlErrors?: readonly Error[];
constructor(status: number, message: string, details?: {
headers?: {
name: string;
value: string;
}[];
graphqlErrors?: readonly Error[];
});
}