UNPKG

@kamilkisiela/graphql-tools

Version:

Useful tools to create and manipulate GraphQL schemas.

11 lines (10 loc) 299 B
import { ILogger } from './Interfaces'; export declare class Logger implements ILogger { errors: Error[]; name: string; private callback; constructor(name?: string, callback?: Function); log(err: Error): void; printOneError(e: Error): string; printAllErrors(): string; }