UNPKG

@zoom/videosdk

Version:
20 lines (19 loc) 652 B
/** * * The logger client enabled to report client side issues to Zoom. This helps increase visibility into any client side connection issues, crashes, etc, allowing Zoom to investigate and fix any issues quickly. * */ export declare namespace LoggerClient { /** * Reports to global tracing. * GlobalTracing is Zoom's internal log system. */ function reportToGlobalTracing(): Promise<void>; /** * Report subjective rating to Zoom. * @param rating subjective rating scale from 1-5, 1:poor, 5:good. * @param feedback Text-based feedback. * */ function reportRating(rating: number, feedback?: string): Promise<void>; }