14 lines
376 B
TypeScript
14 lines
376 B
TypeScript
|
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);
|
||
|
}
|