mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 03:49:11 +00:00
18 lines
291 B
TypeScript
18 lines
291 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;
|
|
};
|
|
|
|
export type RoleypolyUser = {
|
|
discorduser: DiscordUser;
|
|
};
|