UNPKG

plogger-sdk

Version:

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

10 lines (9 loc) 290 B
import { levelInfo } from "../logLevel"; import { IStackFrame } from "./errorObj"; export interface logObj { readonly level: levelInfo; readonly timestamp: string; readonly log: unknown; readonly scope?: string; readonly metaData?: IStackFrame | IStackFrame[] | null; }