UNPKG

zego-express-logger

Version:

zego express log sdk

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