@atlaskit/editor-core
Version:
A package contains Atlassian editor core functionality
13 lines (12 loc) • 459 B
TypeScript
import { AnalyticsHandler } from './handler';
/**
* The service allows @analytics annotations to access the analytics Handler
* from an arbitrary scope. This coupling assumes that there is only one analytics
* Handler that should be used on the page across all components.
*/
export declare class AnalyticsService {
trackEvent: AnalyticsHandler;
handler: AnalyticsHandler | null;
}
declare var _default: AnalyticsService;
export default _default;