@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Interface KanbanCard<T>

    Represents a single card on the kanban board.

    interface KanbanCard<T = unknown> {
        data: T;
        id: string;
    }

    Type Parameters

    • T = unknown

      The shape of the card payload.

    Index

    Properties

    Properties

    data: T

    Consumer-supplied payload rendered via the card template.

    id: string

    Unique card identifier.