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-23 03:12:00 +0300
committerGitHub <noreply@github.com>2022-05-23 03:12:00 +0300
commitde79ff08ccbf67574b27bba7bef417503a35101f (patch)
tree53fa9069cc3e9f2943408d87b6b2f08edb373d56 /plugins/CoreVue/types/index.d.ts
parent6eb89374b80a2fd9ffb947db5e367a5b502dca6e (diff)
Allow other primitive types as arguments to translate. (#19255)
Diffstat (limited to 'plugins/CoreVue/types/index.d.ts')
-rw-r--r--plugins/CoreVue/types/index.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreVue/types/index.d.ts b/plugins/CoreVue/types/index.d.ts
index e229bd6937..4bc17e2355 100644
--- a/plugins/CoreVue/types/index.d.ts
+++ b/plugins/CoreVue/types/index.d.ts
@@ -220,7 +220,7 @@ declare global {
NumberFormatter: NumberFormatter;
Piwik_Transitions: TransitionsGlobal;
- _pk_translate(translationStringId: string, values: string[]): string;
+ _pk_translate(translationStringId: string, values: (string|number|boolean)[]): string;
require(p: string): any;
initTopControls(): void;
vueSanitize(content: string): string;