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>2021-11-12 05:40:50 +0300
committerGitHub <noreply@github.com>2021-11-12 05:40:50 +0300
commit0e53a20b235f5edd5ec98aab1c9daad48a88d46f (patch)
tree6f7f6a7ce1f2f6ece044907c71581fa89db65382 /plugins/CoreVue/types/index.d.ts
parent1e4af959702fb184001db899bfb6ac5f8c12c85a (diff)
[Vue] Cannot return IAngularEvent in $emit wrapper unfortunately. (#18296)
* Cannot return IAngularEvent in $emit wrapper unfortunately. * built vue files
Diffstat (limited to 'plugins/CoreVue/types/index.d.ts')
-rw-r--r--plugins/CoreVue/types/index.d.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CoreVue/types/index.d.ts b/plugins/CoreVue/types/index.d.ts
index 04f0ef874d..48b04667c1 100644
--- a/plugins/CoreVue/types/index.d.ts
+++ b/plugins/CoreVue/types/index.d.ts
@@ -6,7 +6,7 @@
*/
import jqXHR = JQuery.jqXHR;
-import { IAngularEvent, IAngularStatic } from 'angular';
+import { IAngularStatic } from 'angular';
declare global {
type ParameterValue = string | number | null | undefined | ParameterValue[];
@@ -120,7 +120,7 @@ declare global {
on(eventName: string, listener: WrappedEventListener): void;
off(eventName: string, listener: WrappedEventListener): void;
- postEvent(eventName: string, ...args: any[]): IAngularEvent;
+ postEvent(eventName: string, ...args: any[]): void;
postEventNoEmit(eventName: string, ...args: any[]): void;
}