UNPKG

@sologence/nestjs-auth

Version:

## Overview

8 lines (7 loc) 187 B
import { User, USER_ROLE } from '../../entity/user.entity'; export interface ValidationResult { isValidated: boolean; userRole?: USER_ROLE; token?: string; user?: User; }