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