import type { default as ServiceScope } from '../serviceScope/ServiceScope'; /** * The redirectable implementation for the Log class. * * @alpha */ export interface 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; } export default ILogHandler; //# sourceMappingURL=ILogHandler.d.ts.map