import {LoggerAPI} from './LoggerAPI'; export interface LoggerRegistry extends LoggerAPI { /** * This method allows products to register an implementation of LoggerAPI that is * appropriate for the product. * @param loggerAPI the instance of LoggerAPI to register. */ registerLoggerAPI(loggerAPI: LoggerAPI): void; }