@pothos/core
Version:
Pothos (formerly GiraphQL) is a plugin based schema builder for creating code-first GraphQL schemas in typescript
11 lines • 485 B
TypeScript
import { GraphQLError, type GraphQLErrorOptions } from 'graphql';
export declare class PothosError extends GraphQLError {
constructor(message: string, options?: GraphQLErrorOptions);
}
export declare class PothosSchemaError extends PothosError {
constructor(message: string, options?: GraphQLErrorOptions);
}
export declare class PothosValidationError extends PothosError {
constructor(message: string, options?: GraphQLErrorOptions);
}
//# sourceMappingURL=errors.d.ts.map