Skip to content

Commit

Permalink
feat: added date type in apiobject and apioptions
Browse files Browse the repository at this point in the history
  • Loading branch information
MoumitaM committed Mar 22, 2024
1 parent 1289217 commit d7d61ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/analytics-js-common/src/types/ApiObject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export type ApiObject = {
| boolean
| ApiObject
| null
| Date
| (string | number | boolean | null | ApiObject)[]
| undefined;
};
1 change: 1 addition & 0 deletions packages/analytics-js-common/src/types/EventApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export type ApiOptions = {
| boolean
| ApiObject
| null
| Date
| (string | number | boolean | ApiObject)[]
| undefined;
};
Expand Down

0 comments on commit d7d61ae

Please sign in to comment.