UNPKG

angular-kanban

Version:

A lightweight and customizable Kanban board library for Angular application

14 lines (13 loc) 249 B
export interface KanbanCard { id: string; title: string; description?: string; } export interface KanbanColumn { id: string; title: string; cards: KanbanCard[]; } export interface KanbanBoard { columns: KanbanColumn[]; }