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