lilybird
Version:
A bun-first discord api wrapper written in TS
23 lines • 663 B
TypeScript
import type { Locale, PremiumType } from "#enums";
export declare namespace User {
interface Structure {
id: string;
username: string;
discriminator: string;
global_name: string | null;
avatar: string | null;
bot?: boolean;
system?: boolean;
mfa_enabled?: boolean;
banner?: string | null;
accent_color?: number | null;
locale?: Locale;
verified?: boolean;
email?: string | null;
flags?: number;
premium_type?: PremiumType;
public_flags?: number;
avatar_decoration?: string | null;
}
}
//# sourceMappingURL=user.d.ts.map