@authup/server-api
Version:
This is a standalone application.
27 lines • 751 B
TypeScript
import type { User } from '@authup/core';
import { Realm } from '@authup/core';
export declare class UserEntity implements User {
id: string;
name: string;
name_locked: boolean;
first_name: string | null;
last_name: string | null;
display_name: string;
email: string | null;
password: string | null;
avatar: string | null;
cover: string | null;
reset_hash: string | null;
reset_at: string | null;
reset_expires: string | null;
status: string | null;
status_message: string | null;
active: boolean;
activate_hash: string | null;
created_at: Date;
updated_at: Date;
realm_id: Realm['id'];
realm: Realm;
setDisplayName(): void;
}
//# sourceMappingURL=entity.d.ts.map