@nebular/auth
Version:
@nebular/auth
11 lines (10 loc) • 341 B
TypeScript
export declare class NbUser {
id?: number;
email?: string;
password?: string;
rememberMe?: boolean;
terms?: boolean;
confirmPassword?: string;
fullName?: string;
constructor(id?: number, email?: string, password?: string, rememberMe?: boolean, terms?: boolean, confirmPassword?: string, fullName?: string);
}