Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 830 Bytes

api-report.md

File metadata and controls

27 lines (22 loc) · 830 Bytes

API Report File for "@backstage/plugin-analytics-module-ga"

Do not edit this file. It is a report generated by API Extractor.

import { AnalyticsApi } from '@backstage/core-plugin-api';
import { AnalyticsEvent } from '@backstage/core-plugin-api';
import { BackstagePlugin } from '@backstage/core-plugin-api';
import { Config } from '@backstage/config';
import { IdentityApi } from '@backstage/core-plugin-api';

// @public (undocumented)
export const analyticsModuleGA: BackstagePlugin<{}, {}>;

// @public
export class GoogleAnalytics implements AnalyticsApi {
  captureEvent(event: AnalyticsEvent): void;
  static fromConfig(
    config: Config,
    options?: {
      identityApi?: IdentityApi;
    },
  ): GoogleAnalytics;
}

// (No @packageDocumentation comment for this package)