UNPKG

@graphql-inspector/cli

Version:

Tooling for GraphQL. Compare GraphQL Schemas, check documents, find breaking changes, find similar types.

9 lines (8 loc) 304 B
import * as probot from 'probot'; export interface Logger { log(msg: string): void; info(msg: string): void; warn(msg: string): void; error(msg: string | Error, error?: Error): void; } export declare function createLogger(label: string, context: probot.Context, release: string): Logger;