Skip to content

Instantly share code, notes, and snippets.

View rafaelchuluc-nomad's full-sized avatar

Rafael Chuluc rafaelchuluc-nomad

View GitHub Profile
@rafaelchuluc-nomad
rafaelchuluc-nomad / pagination.decorator.ts
Created November 24, 2023 19:44
NestJS pagination Decorator
import { ExecutionContext, createParamDecorator } from '@nestjs/common';
import { ApiQuery } from '@nestjs/swagger';
export interface IPagination {
page: number;
limit: number;
}
export interface IPaginationResponse<T> {
items: T[];