UNPKG

advanced-logger

Version:

Advanced logger module extendable with plugins. Works in nodejs and browsers

8 lines (7 loc) 283 B
import IDefaultLogConfig from "./IDefaultLogConfig"; import IRequestConfig from "./IRequestConfig"; export default interface IServiceConfig { serviceConfig: IRequestConfig; defaultLogConfig?: IDefaultLogConfig; serializer?<T extends IDefaultLogConfig>(log: T): string; }