Interface IBoard<Data, Payload, ColumnType>

Interface representing a board.

interface IBoard<Data = IAnything, Payload = IAnything, ColumnType = IAnything> {
    columns: IBoardColumn<Data, Payload, ColumnType>[];
    id: string;
    label: ReactNode;
}

Type Parameters

  • Data = IAnything

    The type of data stored in the board.

  • Payload = IAnything

    The type of payload stored in the board.

  • ColumnType = IAnything

    The type of column in the board.

Properties

Properties

id: string
label: ReactNode