@progress/kendo-vue-dateinputs
Version:
23 lines (22 loc) • 885 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 { ListItem } from './ListItem';
import { ListServiceSettings } from './ListServiceSettings';
/**
* @hidden
*/
export interface ListService {
apply(value: Date, candidate: Date): Date;
configure(settings: ListServiceSettings): void;
data(value?: Date): ListItem[];
isRangeChanged(min: Date, max: Date): boolean;
limitRange(min: Date, max: Date, value?: Date): Date[];
total(value?: Date): number;
selectedIndex(value: Date): number;
valueInList(value: Date): boolean;
}