next-start-cli
Version:
This is a CLI tool to create a nextjs project and add the necessary dependencies and configurations
18 lines (16 loc) • 326 B
TypeScript
export interface PaginationParams {
page: number;
limit: number;
sort?: string;
startDate?: string;
endDate?: string;
}
interface PaginationResponse {
total: number;
page: number;
limit: number;
totalPages: number;
}
export interface PaginatedResponse {
pagination: PaginationResponse;
}