mashafrancis/butternut-user

View on GitHub
src/app/auth/dto/jwt.dto.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ApiProperty } from '@nestjs/swagger';

export class JwtDto {
    @ApiProperty()
    expiresIn: number;

    @ApiProperty()
    accessToken: string;

    @ApiProperty()
    refreshToken: string;
}