import { LogParam } from '../shared/log.configure'; import { LogStyle, LogType } from '../shared/log-style.define'; /** * @description * TODO 字符串正常压入,函数要处理,对象%o,颜色%c,要保存两个变量,一个是字符串,一个是参数 * 函数处理1.原封输出.2.变成对象输出2.属性? * 对象数组输出table还是正常的 * @author cyia * @date 2018-11-26 * @export * @param param */ export declare function getLogParamList(...param: any[]): LogParam[]; /** * @description 设置输出的样式, * @author cyia * @date 2018-09-06 * @param [str=''] 字符串传参,和标签中style=""的格式一致 * @param [styleObj=null] 驼峰对象 * @memberof LogService */ export declare function getDataStyle(styleObj?: LogStyle): string; /** * @description 返回重写的方法列表 * @author cyia * @date 2018-11-28 * @export * @param value * @returns */ export declare function allowPrintOutList(value: number): LogType[];