mobilizon.chapril.org-mobil.../js/src/types/search.model.ts

13 lines
232 B
TypeScript
Raw Normal View History

2019-04-26 15:22:16 +02:00
import { IGroup } from '@/types/actor';
import { IEvent } from '@/types/event.model';
export interface SearchEvent {
total: number;
elements: IEvent[];
}
export interface SearchGroup {
total: number;
elements: IGroup[];
}