UNPKG

probot

Version:

A framework for building GitHub Apps to automate and improve your workflow

8 lines (7 loc) 287 B
import type { Logger } from "pino"; import { type Options, type LogLevel } from "@probot/pino"; export type GetLogOptions = { level?: LogLevel | undefined; logMessageKey?: string | undefined; } & Options; export declare function getLog(options?: GetLogOptions): Promise<Logger>;