Represents a calendar tile.

interface ICalendarTile<Data = IAnything, Payload = IAnything> {
    data: Data;
    index: number;
    onDaySelect: () => void;
    payload: Payload;
    rowMark: string;
}

Type Parameters

  • Data = IAnything

    The type of data associated with the tile.

  • Payload = IAnything

    The type of additional payload associated with the tile.

Hierarchy

  • Omit<ITile<Data, Payload>, keyof { isSelected: never; toggleSelection: never }>
    • ICalendarTile

Properties

data: Data
index: number
onDaySelect: () => void
payload: Payload
rowMark: string