Add mentions

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2019-05-29 16:46:23 +02:00
parent 07d4db5ce9
commit d3176e2a8d
6 changed files with 309 additions and 15 deletions

View File

@@ -1,4 +1,4 @@
import { IGroup } from '@/types/actor';
import { IGroup, IPerson } from '@/types/actor';
import { IEvent } from '@/types/event.model';
export interface SearchEvent {
@@ -10,3 +10,8 @@ export interface SearchGroup {
total: number;
elements: IGroup[];
}
export interface SearchPerson {
total: number;
elements: IPerson[];
}