source: trip-planner-front/node_modules/zone.js/dist/zone.api.extensions.ts@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.6 KB
Line 
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8
9/**
10 * Additional `EventTarget` methods added by `Zone.js`.
11 *
12 * 1. removeAllListeners, remove all event listeners of the given event name.
13 * 2. eventListeners, get all event listeners of the given event name.
14 */
15interface EventTarget {
16 /**
17 *
18 * Remove all event listeners by name for this event target.
19 *
20 * This method is optional because it may not be available if you use `noop zone` when
21 * bootstrapping Angular application or disable the `EventTarget` monkey patch by `zone.js`.
22 *
23 * If the `eventName` is provided, will remove event listeners of that name.
24 * If the `eventName` is not provided, will remove all event listeners associated with
25 * `EventTarget`.
26 *
27 * @param eventName the name of the event, such as `click`. This parameter is optional.
28 */
29 removeAllListeners?(eventName?: string): void;
30 /**
31 *
32 * Retrieve all event listeners by name.
33 *
34 * This method is optional because it may not be available if you use `noop zone` when
35 * bootstrapping Angular application or disable the `EventTarget` monkey patch by `zone.js`.
36 *
37 * If the `eventName` is provided, will return an array of event handlers or event listener
38 * objects of the given event.
39 * If the `eventName` is not provided, will return all listeners.
40 *
41 * @param eventName the name of the event, such as click. This parameter is optional.
42 */
43 eventListeners?(eventName?: string): EventListenerOrEventListenerObject[];
44}
Note: See TracBrowser for help on using the repository browser.