Skip to content
This repository was archived by the owner on Mar 21, 2025. It is now read-only.

Commit 1385be9

Browse files
Merge pull request #260 from justindra/master
fix: set event options as optional
2 parents b05fb0d + 6902095 commit 1385be9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vue-analytics.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ declare module 'vue-analytics' {
77
(category: string, action?: string, label?: string, value?: number): void;
88
(options: {
99
eventCategory: string,
10-
eventAction: string,
11-
eventLabel: string,
12-
eventValue: number
10+
eventAction?: string,
11+
eventLabel?: string,
12+
eventValue?: number
1313
}): void;
1414
}
1515

0 commit comments

Comments
 (0)