voluptasmollitia
Version:
Monorepo for the Firebase JavaScript SDK
37 lines (25 loc) • 1.68 kB
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) > [@firebase/analytics](./analytics.md) > [logEvent](./analytics.logevent_1.md)
## logEvent() function
Sends analytics event with given `eventParams`<!-- -->. This method automatically associates this logged event with this Firebase web app instance on this device.
List of recommended event parameters can be found in [the gtag.js reference documentation](https://developers.google.com/gtagjs/reference/event)<!-- -->.
<b>Signature:</b>
```typescript
export declare function logEvent(analyticsInstance: Analytics, eventName: 'add_shipping_info', eventParams?: {
coupon?: EventParams['coupon'];
currency?: EventParams['currency'];
items?: EventParams['items'];
shipping_tier?: EventParams['shipping_tier'];
value?: EventParams['value'];
[key: string]: any;
}, options?: AnalyticsCallOptions): void;
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| analyticsInstance | [Analytics](./analytics.analytics.md) | |
| eventName | 'add\_shipping\_info' | |
| eventParams | { coupon?: [EventParams](./analytics.eventparams.md)<!-- -->\['coupon'\]; currency?: [EventParams](./analytics.eventparams.md)<!-- -->\['currency'\]; items?: [EventParams](./analytics.eventparams.md)<!-- -->\['items'\]; shipping\_tier?: [EventParams](./analytics.eventparams.md)<!-- -->\['shipping\_tier'\]; value?: [EventParams](./analytics.eventparams.md)<!-- -->\['value'\]; \[key: string\]: any; } | |
| options | [AnalyticsCallOptions](./analytics.analyticscalloptions.md) | |
<b>Returns:</b>
void