An error occurs when using the currentUser
property.
Object literal may only specify known properties, and ‘currentUser’ does not exist in type ‘Partial<IKanbanConfig>’.
164 currentUser: ‘1’,
Below is an example code.
const board = new Kanban('#kanban', {
.....
currentUser: '1'
}
or
board.setConfig({
currentUser: '1',
})