diff --git a/nestjs-BE/server/src/auth/auth.service.ts b/nestjs-BE/server/src/auth/auth.service.ts index 1a69ede4..e63a518c 100644 --- a/nestjs-BE/server/src/auth/auth.service.ts +++ b/nestjs-BE/server/src/auth/auth.service.ts @@ -16,7 +16,7 @@ import { CreateUserDto } from 'src/users/dto/create-user.dto'; import customEnv from 'src/config/env'; const { BASE_IMAGE_URL } = customEnv; -interface TokenData { +export interface TokenData { uuid?: string; token: string; expiry_date: Date;