2018-09-13 09:23:57 +02:00
|
|
|
/**
|
|
|
|
* Every displayble object should have the given functions to give the object's title.
|
|
|
|
*/
|
|
|
|
export interface Displayable {
|
|
|
|
/**
|
2019-02-08 16:02:46 +01:00
|
|
|
* Should return the title. Always used except for list view, the agenda and in the projector.
|
2018-09-13 09:23:57 +02:00
|
|
|
*/
|
2019-02-08 16:02:46 +01:00
|
|
|
getTitle: () => string;
|
2018-09-13 09:23:57 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Should return the title for the list view.
|
|
|
|
*/
|
2019-02-08 16:02:46 +01:00
|
|
|
getListTitle: () => string;
|
2018-09-13 09:23:57 +02:00
|
|
|
}
|