APIKanban methodsdeleteCard()On this pagedeleteCard() Description Removes the specified card from datastore of KanbanUsagedeleteCard({ id: string | number }): void;Parameters id - (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 });