UNPKG

@netlify/zip-it-and-ship-it

Version:
9 lines (8 loc) 259 B
type LogFunction = (...args: unknown[]) => void; interface Logger { system: LogFunction; user: LogFunction; } declare const getLogger: (systemLogger?: LogFunction, debug?: boolean) => Logger; export { getLogger }; export type { LogFunction, Logger };