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