UNPKG

@graphql-inspector/action

Version:

GraphQL Inspector functionality for GitHub Actions

9 lines (8 loc) 302 B
import type { Context } 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: Context, release: string): Logger;