api.getStores()
Description
Gets an object with the DataStore properties of Kanban
Usage
api.getStores(): object;
Returns
The method returns an object with the DataStore parameters:
{
data: DataStore // ( object of parameters )
}
Example
// create Kanban
const board = new kanban.Kanban("#root", {
columns,
cards
});
// get the DataStore object of Kanban
const store = board.api.getStores();
console.log(store);
Change log: The method was updated in v1.2