UNPKG

create-nova-expo-template

Version:

A template for creating a new React Native app using Expo and TypeScript, with a focus on performance and best practices.

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