export type Method = (...args: Array) => void; export type Logger = { output: Method; error: Method; warn: Method; info: Method; log: Method; debug: Method; trace: Method; };