UNPKG

@solfacil/girassol

Version:
16 lines (15 loc) 345 B
export type ModelValue = Date | string | Date[] | string[]; export interface DatePicker { id: string; label?: string; range?: boolean; error?: string; size?: 'small' | 'medium'; helperText?: string; modelValue?: ModelValue; placeholder?: string; } export interface Range { text: string; value?: number; }