APIKanban methodsdeleteRow()On this pagedeleteRow() Description Removes the specified row from datastore of KanbanUsagedeleteRow({ id: string | number }): void;Parameters id - (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" });