Implémenter une app vue avec la liste des tickets attribués

This commit is contained in:
Boris Waaub
2025-07-18 16:06:16 +00:00
committed by Julien Fastré
parent 6594d4f6a6
commit 61d1232e31
28 changed files with 1068 additions and 388 deletions

View File

@@ -5,11 +5,16 @@ export type fetchOption = Record<string, boolean | string | number | null>;
export type Params = Record<string, number | string>;
export interface Pagination {
first: number;
items_per_page: number;
more: boolean;
next: string | null;
previous: string | null;
}
export interface PaginationResponse<T> {
pagination: {
more: boolean;
items_per_page: number;
};
pagination: Pagination;
results: T[];
count: number;
}