This commit is contained in:
Thomas Nordquist
2019-06-26 17:41:04 +02:00
parent e02091f645
commit f9829c2d5c
24 changed files with 204 additions and 152 deletions

View File

@@ -4,8 +4,8 @@ import { EventDispatcher } from '../../../events'
export class TopicViewModel implements Destroyable {
private selected: boolean
private expanded: boolean
public selectionChange = new EventDispatcher<void, TopicViewModel>()
public expandedChange = new EventDispatcher<void, TopicViewModel>()
public selectionChange = new EventDispatcher<void>()
public expandedChange = new EventDispatcher<void>()
public constructor() {
this.selected = false