????
Current Path : C:/inetpub/vhost/qnquyhoach.nextform.vn/api/dist/apps/auth/dto/ |
Current File : C:/inetpub/vhost/qnquyhoach.nextform.vn/api/dist/apps/auth/dto/model.dto.d.ts |
export declare type TokenStatus = 'valid' | 'redeemed' | 'revoked'; export declare type TokenType = 'access_token' | 'refresh_token'; export declare interface TokenReturn { userId: number; accessToken: string; accessTokenExpiresAt?: Date; refreshToken?: string; refreshTokenExpiresAt?: Date; }