UNPKG

@documment/mmp.ui.data

Version:

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

9 lines (8 loc) 372 B
import { MessageFormatter } from './message-formatter'; import { LogLevel } from '../definitions/log-level.definitions'; import { LogEntry } from '../models/log-entry.model'; export declare class LogEntryMaker { private messageFormatter; constructor(messageFormatter: MessageFormatter); make(level: LogLevel, text: string, ...optionalArgs: any[]): LogEntry; }