@ngn-net/giftcard-shared
Version:
Shared library for gifts score microservices
16 lines (15 loc) • 472 B
TypeScript
import { RabbitAddress } from "src/constants";
export declare const AuthenticationRabbitAPI: RabbitAddress;
export interface GetEwanoIdDto {
userId: string;
}
export interface EwanoGetIdResponse {
token: string;
userId: string;
telnum: string;
}
export declare class UserService {
private readonly rabbit;
getUserProfile(userId: string): Promise<EwanoGetIdResponse>;
}
export declare const UserRabbitModule: import("@nestjs/common").DynamicModule;