From 6902095967d8673ef10ddb4080de2ad57abb8fd0 Mon Sep 17 00:00:00 2001 From: Justin Rahardjo Date: Wed, 11 Dec 2019 14:00:51 -0700 Subject: [PATCH] fix: set event options as optional --- vue-analytics.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vue-analytics.d.ts b/vue-analytics.d.ts index e9a28c6..eb5d199 100644 --- a/vue-analytics.d.ts +++ b/vue-analytics.d.ts @@ -7,9 +7,9 @@ declare module 'vue-analytics' { (category: string, action?: string, label?: string, value?: number): void; (options: { eventCategory: string, - eventAction: string, - eventLabel: string, - eventValue: number + eventAction?: string, + eventLabel?: string, + eventValue?: number }): void; }