UNPKG

187 BTypeScriptView Raw
1export default logger;
2
3declare namespace Choo {
4 export interface LogOpts {
5 colors?: object
6 }
7}
8
9declare function logger(opts?: Choo.LogOpts): (state: any, emitter: any) => void;