Changes for search

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2019-04-24 19:01:39 +02:00
parent 83ebe94d84
commit 88f05665a2
3 changed files with 56 additions and 27 deletions

View File

@@ -1,3 +1,12 @@
export interface ISearch {
__typename: string;
import { IGroup } from '@/types/actor.model';
import { IEvent } from '@/types/event.model';
export interface SearchEvent {
total: number;
elements: IEvent[];
}
export interface SearchGroup {
total: number;
elements: IGroup[];
}