@progress/kendo-vue-dateinputs
Version:
21 lines (20 loc) • 871 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { Action } from '../models/NavigationAction';
import { CalendarViewEnum } from '../models/CalendarViewEnum';
import { BusViewService } from '../services/BusViewService';
import { ViewService } from '../models/ViewService';
/**
* @hidden
*/
export declare class NavigationService {
private bus;
constructor(bus: BusViewService);
action(event: any): Action;
move(value: Date, action: Action | null, activeView: CalendarViewEnum, service: ViewService, event?: any): Date;
}