????

Your IP : 216.73.216.64


Current Path : C:/inetpub/vhost/qnquyhoach.nextform.vn/api/dist/apps/auth/dto/
Upload File :
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;
}