APIKanban methodsdeleteCard()On this pagedeleteCard()DescriptionRemoves the specified card from datastore of KanbanUsagedeleteCard({ id: string | number }): void;Parametersid - (required) the ID of the card to be deleted Example// create Kanbanconst board = new kanban.Kanban("#root", { columns, cards});// remove card by its idboard.deleteCard({ id: 1 });