334d66bf5d
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
5 lines
67 B
TypeScript
5 lines
67 B
TypeScript
export interface Paginate<T> {
|
|
elements: T[];
|
|
total: number;
|
|
}
|