ISpecialDate

Spacial date options

interface ISpecialDate {
    /**
     * special date 
     */
    date: string | Date,
    /**
     * Text to show on tootltip 
     */
    label?: string
    /**
     * background color for the date 
     */
    backgroundColor?: string
    /**
     * text color for the date 
     */
    color?: string
}

Usage

Last updated