login-auth-services
Version:
Authentication services for Google, GitHub, Microsoft, okta and multi-factor authentication using OTP.
17 lines (16 loc) • 361 B
TypeScript
export declare class User {
id: number | string;
username: string;
email: string;
password: string;
salt?: string;
githubId?: string;
googleId?: string;
provider?: string;
microsoftId?: string;
providerId?: string;
profileUrl?: string;
createdAt?: Date;
updatedAt?: Date;
constructor();
}