UNPKG

plogger-sdk

Version:

Typescript based frontend logging library compatible with multiple transports and JS/TS frameworks

18 lines (17 loc) 425 B
import { logLevelType } from "../logLevel"; export interface httpConfig { serverUrl: string; batchOptions?: batchOptions; retryOptions?: retryOptions; highPriority?: logLevelType; setCredentials?: boolean; showFormattedLog?: boolean; } export interface batchOptions { batchSize: number; debounceTime: number; } export interface retryOptions { maxRetries: number; retryDelay: number; }