UNPKG

relaycode

Version:

A developer assistant that automates applying code changes from LLMs.

17 lines (14 loc) 554 B
import { LogLevelName } from 'relaycode-core'; declare const logger: { setLevel: (level: LogLevelName) => void; info: (message: string) => void; success: (message: string) => void; warn: (message: string) => void; error: (message: string) => void; debug: (message: string) => void; log: (message: string) => void; prompt: (message: string) => void; }; declare const getErrorMessage: (error: unknown) => string; declare const isEnoentError: (error: unknown) => boolean; export { getErrorMessage, isEnoentError, logger };