15 lines
333 B
TypeScript
15 lines
333 B
TypeScript
|
|
/**
|
||
|
|
*
|
||
|
|
* Calendar also known as DatePicker, is a form component to work with dates.
|
||
|
|
*
|
||
|
|
* [Live Demo](https://www.primevue.org/datepicker/)
|
||
|
|
*
|
||
|
|
* @module calendarstyle
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
import type { DatePickerStyle } from 'primevue/datepicker/style';
|
||
|
|
|
||
|
|
export enum CalendarClasses {}
|
||
|
|
|
||
|
|
export interface CalendarStyle extends DatePickerStyle {}
|