지금까지 내용 커밋
This commit is contained in:
16
bot/db/db.d.ts
vendored
Normal file
16
bot/db/db.d.ts
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
// }
|
||||
Reference in New Issue
Block a user