@100mslive/hms-video-store
Version:
@100mslive Core SDK which abstracts the complexities of webRTC while providing a reactive store for data management with a unidirectional data flow
14 lines (13 loc) • 431 B
TypeScript
import { HMSLogLevel } from '../internal';
export declare class HMSLogger {
static level: HMSLogLevel;
static v(tag: string, ...data: any[]): void;
static d(...data: any[]): void;
static i(...data: any[]): void;
static w(...data: any[]): void;
static e(...data: any[]): void;
static time(mark: string): void;
static timeEnd(mark: string): void;
static cleanup(): void;
private static log;
}