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-11 12:39:39 +0300
committerGitHub <noreply@github.com>2022-04-11 12:39:39 +0300
commit793c7db0bec494d7165c60e04cbf4db5f701419b (patch)
treeeacc1cc998049395f7d3fa5754e2eae79803b347 /plugins/CoreVue/types/index.d.ts
parente6182097f4a9005de69f34f82c3f76b5c6162473 (diff)
[Vue] migrate widgetize plugin to vue (#19029)
* migrate widget preview directive * migrate export-widget controller to vue * fix ui tests * update expected screenshot * remove unneeded deletes
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 2a454c6b78..6478aa398d 100644
--- a/plugins/CoreVue/types/index.d.ts
+++ b/plugins/CoreVue/types/index.d.ts
@@ -176,6 +176,7 @@ declare global {
interface WidgetsHelper {
availableWidgets?: unknown[];
getAvailableWidgets(callback?: (widgets: Record<string, unknown[]>) => unknown);
+ getWidgetObjectFromUniqueId(id: string, callback: (widget: unknown) => void);
firstGetAvailableWidgetsCall?: Promise<void>;
}