import type ILogHandler from './ILogHandler'; import type ServiceScope from '../serviceScope/ServiceScope'; /** * The redirectable implementation for the Log class. */ export default class DefaultLogHandler implements ILogHandler { verbose(source: string, message: string, scope: ServiceScope | undefined): void; info(source: string, message: string, scope: ServiceScope | undefined): void; warn(source: string, message: string, scope: ServiceScope | undefined): void; error(source: string, error: Error, scope: ServiceScope | undefined): void; } //# sourceMappingURL=DefaultLogHandler.d.ts.map