mobilizon.chapril.org-mobil.../js/src/types/search.model.ts
Thomas Citharel da42522073
Fix eslint warnings
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2020-11-30 12:48:21 +01:00

18 lines
326 B
TypeScript

import type { IGroup, IPerson } from "@/types/actor";
import type { IEvent } from "@/types/event.model";
export interface SearchEvent {
total: number;
elements: IEvent[];
}
export interface SearchGroup {
total: number;
elements: IGroup[];
}
export interface SearchPerson {
total: number;
elements: IPerson[];
}