UNPKG

zego-express-logger

Version:

zego express log sdk

14 lines (13 loc) 378 B
import { WebLogCache } from '../log-cache-web'; import { LogStrategy } from './log-strategy'; /** * 实时上报,来一条打一条 */ export declare class UnLimitStrategy extends LogStrategy { constructor(cache: WebLogCache); getLog(): string[]; canSendLog(): boolean; onSendLog(): void; cacheLog(log: string): void; destroy(): void; }