Files
music_bot_v2/bot/db/db.d.ts

16 lines
311 B
TypeScript

export interface GuildType {
id: string;
name: string;
channel_id: string;
msg_id: string;
options: {
recommend: boolean;
};
}
export type GuildRow = Omit<GuildType, "options"> & { options: string };
// export interface UserType {
// guild_id: string;
// id: string;
// name: string;
// }