@netgrif/components-core
Version:
Netgrif Application engine frontend core Angular library
9 lines (8 loc) • 325 B
TypeScript
import { LogEntry } from '../models/log-entry';
import { LogPublisherService } from '../services/log-publisher.service';
export declare abstract class LogPublisher {
protected location: string;
constructor(publisherService: LogPublisherService);
abstract log(entry: LogEntry): void;
abstract clear(): void;
}