source: trip-planner-front/node_modules/@angular/cdk/overlay/dispatchers/overlay-keyboard-dispatcher.d.ts.__ivy_ngcc_bak@ ceaed42

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

initial commit

  • Property mode set to 100644
File size: 976 bytes
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 */
8import { OverlayReference } from '../overlay-reference';
9import { BaseOverlayDispatcher } from './base-overlay-dispatcher';
10/**
11 * Service for dispatching keyboard events that land on the body to appropriate overlay ref,
12 * if any. It maintains a list of attached overlays to determine best suited overlay based
13 * on event target and order of overlay opens.
14 */
15export declare class OverlayKeyboardDispatcher extends BaseOverlayDispatcher {
16 constructor(document: any);
17 /** Add a new overlay to the list of attached overlay refs. */
18 add(overlayRef: OverlayReference): void;
19 /** Detaches the global keyboard event listener. */
20 protected detach(): void;
21 /** Keyboard event listener that will be attached to the body. */
22 private _keydownListener;
23}
Note: See TracBrowser for help on using the repository browser.