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

    Interface KanbanCardContext<T>

    Template context exposed to the projected card template.

    interface KanbanCardContext<T = unknown> {
        $implicit: KanbanCard<T>;
        column: KanbanColumn<T>;
    }

    Type Parameters

    • T = unknown

      The shape of the card payload.

    Index

    Properties

    Properties

    $implicit: KanbanCard<T>

    The card instance (also available via let-card).

    column: KanbanColumn<T>

    The column the card belongs to.