From 43e38695a9c26b008dbc66fc255764b9bbb9b9f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Manuel=20B=C3=A1ez?= <38162926+baez97@users.noreply.github.com> Date: Mon, 30 Nov 2020 16:52:33 +0100 Subject: [PATCH] Updating the PageHit type The PageHit type was missing the second parameter. --- types.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types.d.ts b/types.d.ts index ec3250d..ef054c8 100644 --- a/types.d.ts +++ b/types.d.ts @@ -23,7 +23,7 @@ export interface Options { } export class PageHit { - constructor(pageName: string); + constructor(screenName: string, screenTitle?: string); } export class ScreenHit {