6 lines
243 B
TypeScript
6 lines
243 B
TypeScript
import { ILogDestination, ILogPackage } from '@pushrocks/smartlog-interfaces';
|
|
export declare class SmartlogDestinationDevtools implements ILogDestination {
|
|
handleLog(logPackageArg: ILogPackage): Promise<void>;
|
|
private logInBrowser;
|
|
}
|