UNPKG

@seriouslag/httpclient

Version:
10 lines (8 loc) 212 B
export type LogFunction = (message: string, ...args: unknown[]) => void; /** Logger Interface */ export interface Logger { info: LogFunction; warn: LogFunction; error: LogFunction; debug: LogFunction; }