From 56ab5876b150abcf7e07053c8596b857d9911510 Mon Sep 17 00:00:00 2001 From: Malcolm Kee Date: Sun, 12 Jan 2020 15:06:55 +0800 Subject: [PATCH] Fix gatsby-plugin-google-analytics types --- packages/gatsby-plugin-google-analytics/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gatsby-plugin-google-analytics/index.d.ts b/packages/gatsby-plugin-google-analytics/index.d.ts index 17ac7d2fcdb59..e25a9315f59ad 100644 --- a/packages/gatsby-plugin-google-analytics/index.d.ts +++ b/packages/gatsby-plugin-google-analytics/index.d.ts @@ -13,7 +13,7 @@ export interface CustomEventArgs { category: string action: string label?: string - value?: string + value?: number nonInteraction?: boolean transport?: "beacon" | "xhr" | "image" hitCallback?: Function