UNPKG

@graphql-inspector/action

Version:

GraphQL Inspector functionality for GitHub Actions

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;