UNPKG

@documment/mmp.ui.data

Version:

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.0.1.

13 lines (12 loc) 351 B
import { LogLevel } from '../definitions/log-level.definitions'; export interface ILogEntry { level: LogLevel; timestamp: string; message: string; } export declare class LogEntry implements ILogEntry { level: LogLevel; timestamp: string; message: string; constructor(timestamp: string, level: LogLevel, message: string); }