import IDefaultLogConfig from "./IDefaultLogConfig"; import IRequestConfig from "./IRequestConfig"; export default interface IServiceConfig { serviceConfig: IRequestConfig; defaultLogConfig?: IDefaultLogConfig; serializer?(log: T): string; }