UNPKG

422 BTypeScriptView Raw
1import { NgbDatepicker } from './datepicker';
2/**
3 * A service that represents the keyboard navigation.
4 *
5 * Default keyboard shortcuts [are documented in the overview](#/components/datepicker/overview#keyboard-shortcuts)
6 *
7 * @since 5.2.0
8 */
9export declare class NgbDatepickerKeyboardService {
10 /**
11 * Processes a keyboard event.
12 */
13 processKey(event: KeyboardEvent, datepicker: NgbDatepicker): void;
14}