@evolvejs/core
Version:
An advanced Discord API wrapper with TS and JS support
20 lines (19 loc) • 411 B
TypeScript
import { IUser } from "../..";
export declare class User {
id: string;
username: string;
discriminator: string;
avatar?: string;
bot: boolean;
system: boolean;
twoFactor: boolean;
lang?: string;
verified: boolean;
email?: string;
flags?: number;
premiumType: string;
publicFlags?: number;
data: IUser;
constructor(data: IUser);
private _handle;
}