reporting-lib
Version:
A comprehensive monitoring and reporting library for web applications
18 lines • 882 B
TypeScript
export function detectWhiteScreen({ samplePoints, whiteTags, onDetected, threshold, }?: {
samplePoints?: number | undefined;
whiteTags?: string[] | undefined;
onDetected?: ((isWhiteScreen: any, detail: any) => void) | undefined;
threshold?: number | undefined;
}): void;
export function debounce(fn: any, delay?: number, immediate?: boolean): (...args: any[]) => void;
export function detectionWhiteScreen(): any;
export function getFullBrowserInfo(): {
name: string;
version: string;
};
export function getOSInfo(): "Windows Phone" | "Windows" | "Android" | "iOS" | "macOS" | "Linux" | "Unknown OS";
export function isValidOssVideoUrl(url: any): boolean;
export function toReadableString(data: any): string;
export function getRequestBodySize(body: any): number;
export function getRequestBodySizeFetch(body: any): number;
//# sourceMappingURL=tool.d.ts.map