Remove duplicate, set event_category to optional. (#37252)

This commit is contained in:
Christina Holland 2019-07-31 10:19:09 -07:00 committed by Jesse Trinity
parent 59e7099918
commit 8af4174447

View File

@ -23,7 +23,6 @@ declare namespace Gtag {
}
type EventNames = 'add_payment_info'
| 'add_payment_info'
| 'add_to_cart'
| 'add_to_wishlist'
| 'begin_checkout'
@ -67,7 +66,7 @@ declare namespace Gtag {
transaction_id?: string;
value?: number;
event_label?: string;
event_category: string;
event_category?: string;
}
type Currency = string | number;