import { LogService } from '../log/log.service'; import { ConsoleMethod } from '../logger-types'; /** * Implements a no operation logger the effectively disables all console output. * * @hidden */ export declare class LogNoopService extends LogService { /** * Constructor */ constructor(); /** * Does nothing */ get debug(): ConsoleMethod; /** * Does nothing */ get error(): ConsoleMethod; /** * Does nothing */ get info(): ConsoleMethod; /** * Does nothing */ get log(): ConsoleMethod; /** * Does nothing */ get warn(): ConsoleMethod; /** * Does nothing */ getPrefix(): string; /** * Does nothing */ setPrefix(value: string): LogService; /** * Does nothing */ withPrefix(value?: string, separator?: string): LogService; }