da42522073
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
18 lines
326 B
TypeScript
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[];
|
|
}
|