UNPKG

igniteui-webcomponents

Version:

Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.

13 lines (12 loc) 731 B
import type { Validator } from '../common/validators.js'; import type { DateRangeValue } from '../types.js'; import type IgcDateRangePickerComponent from './date-range-picker.js'; export declare const minDateRangeValidator: Validator<IgcDateRangePickerComponent>; export declare const maxDateRangeValidator: Validator<IgcDateRangePickerComponent>; export declare const requiredDateRangeValidator: Validator<IgcDateRangePickerComponent>; export declare const badInputDateRangeValidator: Validator<IgcDateRangePickerComponent>; export declare const dateRangeValidators: Validator<IgcDateRangePickerComponent>[]; export declare function isCompleteDateRange(value: DateRangeValue | null): value is { start: Date; end: Date; };