Skip to content

Commit

Permalink
fix broken type
Browse files Browse the repository at this point in the history
  • Loading branch information
Blaumaus committed Jan 29, 2024
1 parent cf49825 commit d449496
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/esnext/Lib.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export interface IPageViewPayload {
so: string | undefined;
me: string | undefined;
ca: string | undefined;
pg: string;
pg: string | null | undefined;
prev: string | null | undefined;
}
interface IPerfPayload {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "swetrix",
"version": "3.0.0",
"version": "3.0.1",
"description": "The JavaScript analytics client for Swetrix Analytics",
"main": "dist/swetrix.cjs.js",
"module": "dist/swetrix.es5.js",
Expand Down
2 changes: 1 addition & 1 deletion src/Lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export interface IPageViewPayload {
so: string | undefined
me: string | undefined
ca: string | undefined
pg: string
pg: string | null | undefined
prev: string | null | undefined
}

Expand Down

0 comments on commit d449496

Please sign in to comment.