Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Commit

Permalink
Merge pull request #260 from justindra/master
Browse files Browse the repository at this point in the history
fix: set event options as optional
  • Loading branch information
MatteoGabriele authored Dec 13, 2019
2 parents b05fb0d + 6902095 commit 1385be9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vue-analytics.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 1385be9

Please sign in to comment.