UNPKG

nestjs-api-tools

Version:

Wrappers for convenient API development including validation, logging and i18n wrappers

7 lines (5 loc) 266 B
import {ClassSerializerInterceptor, UseInterceptors} from '@nestjs/common'; /** * Decorator to serialize response objects with class-transformer. */ export const Serialization = (): MethodDecorator & ClassDecorator => UseInterceptors(ClassSerializerInterceptor);