Represents a calendar item.

ICalendarItem

interface ICalendarItem<Data = IAnything, Payload = IAnything> {
    data: Data;
    payload: Payload;
    stamp: number;
}

Type Parameters

  • Data = IAnything

    The type of data associated with the calendar item.

  • Payload = IAnything

    The type of payload associated with the calendar item.

Properties

Properties

data: Data
payload: Payload
stamp: number