Socket
Socket
Sign inDemoInstall

@firebase/analytics-types

Package Overview
Dependencies
Maintainers
5
Versions
2273
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@firebase/analytics-types

@firebase/analytics Types


Version published
Weekly downloads
1.9M
increased by4.75%
Maintainers
5
Weekly downloads
 
Created

What is @firebase/analytics-types?

The @firebase/analytics-types package provides TypeScript type definitions for Firebase Analytics. This package is primarily used in TypeScript projects to ensure type safety and to facilitate autocompletion and documentation in code editors when working with Firebase Analytics.

What are @firebase/analytics-types's main functionalities?

Event Parameters and Options Types

Defines TypeScript types for event parameters and options when logging events in Firebase Analytics. This helps in ensuring that the parameters and options passed to the logEvent function adhere to the expected structure.

import { EventParams, AnalyticsCallOptions } from '@firebase/analytics-types';

function logEvent(analytics: FirebaseAnalytics, eventName: string, eventParams?: EventParams, options?: AnalyticsCallOptions) {
  analytics.logEvent(eventName, eventParams, options);
}

Analytics Interface

Provides type definitions for the FirebaseAnalytics interface, which includes methods for interacting with Firebase Analytics, such as setting the current screen, logging events, etc. This ensures that all method calls on the analytics object are type-checked.

import { FirebaseAnalytics } from '@firebase/analytics-types';

function setupAnalytics(analytics: FirebaseAnalytics) {
  analytics.setCurrentScreen('homepage');
}

Other packages similar to @firebase/analytics-types

FAQs

Package last updated on 15 Oct 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc