UNPKG

advanced-logger

Version:

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

10 lines (9 loc) 266 B
export default interface IRequestConfig { url: string; method: string; retryInterval?: number; retryAttempts?: number; //todo Refactor service configuration to be properly extendable logMetaIndexField?: string; [propName: string]: any; }