mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
19 lines
312 B
TypeScript
19 lines
312 B
TypeScript
export type DiscordUser = {
|
|
id: string;
|
|
username: string;
|
|
discriminator: string;
|
|
avatar: string;
|
|
bot: boolean;
|
|
};
|
|
|
|
export type Member = {
|
|
guildid?: string;
|
|
roles: string[];
|
|
nick?: string;
|
|
user?: DiscordUser;
|
|
pending?: boolean;
|
|
};
|
|
|
|
export type RoleypolyUser = {
|
|
discorduser: DiscordUser;
|
|
};
|