smartlog-destination-devtools/dist/index.d.ts

14 lines
376 B
TypeScript
Raw Normal View History

2018-03-01 22:39:03 +00:00
import { ILogDestination, ILogPackage } from 'smartlog-interfaces';
export interface IBeautyLogObject {
logType: string;
logString: string;
}
export declare class BeautyBrowser implements ILogDestination {
handleLog(logPackage: ILogPackage): void;
/**
* parse logs for display
*/
private parseLog;
private logInBrowser(beautyLogObjectArg);
}