Interface IBoardItem<Data, Payload, ColumnType>

Interface representing a board item.

interface IBoardItem<
    Data = IAnything,
    Payload = IAnything,
    ColumnType = IAnything,
> {
    column: ColumnType;
    data: Data;
    id: string;
    label?: any;
    updatedAt?: string;
}

Type Parameters

  • Data = IAnything

    The type of data for the board item.

  • Payload = IAnything

    The type of payload for the board item.

  • ColumnType = IAnything

    The type of column for the board item.

Properties

column: ColumnType
data: Data
id: string
label?: any
updatedAt?: string