APIKanban methodsdeleteRow()On this pagedeleteRow()DescriptionRemoves the specified row from datastore of KanbanUsagedeleteRow({ id: string | number }): void;Parametersid - (required) the ID of the row to be deleted Example// create Kanbanconst board = new kanban.Kanban("#root", { columns, cards});// remove row by its idboard.deleteRow({ id: "feature" });