UNPKG

create-nova-vite-template

Version:

This is a dashboard template built with React and Vite. It provides a modern and responsive user interface for building web applications.

13 lines (11 loc) 232 B
export interface PaginatedResponse<T> { count: number; next: string | null; pages_number: number; previous: string | null; results: Array<T>; } export interface PaginationParams { page?: number; page_size?: number; }