22 lines
629 B
TypeScript
22 lines
629 B
TypeScript
import { SearchRepresentation } from 'app/core/ui-services/search.service';
|
|
import { DetailNavigable } from 'app/shared/models/base/detail-navigable';
|
|
|
|
/**
|
|
* Asserts, if the given object is searchable.
|
|
*
|
|
* @param object The object to check
|
|
*/
|
|
export function isSearchable(object: any): object is Searchable {
|
|
return (<Searchable>object).formatForSearch !== undefined;
|
|
}
|
|
|
|
/**
|
|
* One can search for every object implementing this interface.
|
|
*/
|
|
export interface Searchable extends DetailNavigable {
|
|
/**
|
|
* Should return strings that represents the object.
|
|
*/
|
|
formatForSearch: () => SearchRepresentation;
|
|
}
|