@lomray/microservice-users
Version:
Users microservice based on NodeJS & inverted json.
18 lines (17 loc) • 404 B
TypeScript
import User from "./user.js";
interface IProfileParams {
isEmailVerified?: boolean;
isPhoneVerified?: boolean;
}
declare class Profile {
userId: string;
gender: string;
birthDay: null | string;
photo: null | string;
location: null | string;
params: IProfileParams;
updatedAt: Date;
deletedAt: Date;
user: User;
}
export { Profile as default, IProfileParams };