UNPKG

graphql-modules

Version:

Create reusable, maintainable, testable and extendable GraphQL modules

9 lines (8 loc) 517 B
export declare const ERROR_TYPE = "diType"; export declare const ERROR_ORIGINAL_ERROR = "diOriginalError"; export declare const ERROR_LOGGER = "diErrorLogger"; export declare function getType(error: Error): Function; export declare function getOriginalError(error: Error): Error; export declare function getErrorLogger(error: Error): (console: Console, ...values: any[]) => void; export declare function wrappedError(message: string, originalError: any): Error; export declare function stringify(token: any): string;