OpenSlides/client/src/app/shared/models/base/detail-navigable.ts

10 lines
250 B
TypeScript
Raw Normal View History

2018-11-07 08:43:48 +01:00
/**
* One can navigate to the detail page of every object implementing this interface.
*/
export interface DetailNavigable {
/**
* Get the url for the detail view, so the user can navigate to it.
*/
getDetailStateURL(): string;
}