UNPKG

zego-express-logger

Version:

zego express log sdk

12 lines (11 loc) 308 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; }