Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordizzy <diosmosis@users.noreply.github.com>2022-05-17 05:04:58 +0300
committerGitHub <noreply@github.com>2022-05-17 05:04:58 +0300
commit47e3435a12c590f2cf29d78257a4775adf4a7b1c (patch)
treedf3d8649e01ab0d4269afb5c5ac86ea9337fdddf
parent7d6d2bc224eed1ff9be08848569e1d01ecac0d96 (diff)
add currentSiteName property to PiwikGlobal type (#19227)
-rw-r--r--plugins/CoreVue/types/index.d.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/CoreVue/types/index.d.ts b/plugins/CoreVue/types/index.d.ts
index f04403fcf7..4e2cfa41e9 100644
--- a/plugins/CoreVue/types/index.d.ts
+++ b/plugins/CoreVue/types/index.d.ts
@@ -134,7 +134,11 @@ declare global {
shouldPropagateTokenAuth: boolean;
token_auth: string;
idSite: string|number;
+ /**
+ * @deprecated
+ */
siteName: string;
+ currentSiteName: string;
period?: string;
currentDateString?: string;
startDateString?: string;