capacitor-youtube-player
Version:
Capacitor Youtube Player
12 lines (11 loc) • 484 B
TypeScript
import type { IPlayerLog } from './web/models/models';
export declare class Log implements IPlayerLog {
logEnabled: boolean;
constructor(logEnabled?: boolean);
log(msg: string, ...suportingDetails: any[]): void;
debug(msg: string, ...suportingDetails: any[]): void;
warn(msg: string, ...suportingDetails: any[]): void;
error(msg: string, ...suportingDetails: any[]): void;
info(msg: string, ...suportingDetails: any[]): void;
private emitLogMessage;
}