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-04-06 17:43:42 +0300
committerGitHub <noreply@github.com>2022-04-06 17:43:42 +0300
commit6ab9923d6324c3d98765881e525d7ecf8ba9d831 (patch)
tree7304f857cb6b11ee31dc447e62b7e5458a4284a6 /plugins/CoreVue/types/index.d.ts
parent698c83bb1e411b18c6ea7c4d1df8668f9f432855 (diff)
[Vue] migrate location-provider-selection directive to vue component (#19026)
* migrate location-provider-selection directive to vue component * test manually * fix UI tests * fix paragraph markup Co-authored-by: sgiehl <stefan@matomo.org>
Diffstat (limited to 'plugins/CoreVue/types/index.d.ts')
-rw-r--r--plugins/CoreVue/types/index.d.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/CoreVue/types/index.d.ts b/plugins/CoreVue/types/index.d.ts
index f038a54fde..dcc0229382 100644
--- a/plugins/CoreVue/types/index.d.ts
+++ b/plugins/CoreVue/types/index.d.ts
@@ -225,6 +225,7 @@ declare global {
declare module '@vue/runtime-core' {
export interface ComponentCustomProperties {
translate: (translationStringId: string, ...values: string[]|string[][]) => string;
+ translateOrDefault: (translationStringIdOrText: string, ...values: string[]|string[][]) => string;
$sanitize: Window['vueSanitize'];
}
}