Files
server/api/src/schema/Widget.ts
T
Flam3rboy 524b5df723 api
2021-08-12 20:09:35 +02:00

11 lines
350 B
TypeScript

// https://discord.com/developers/docs/resources/guild#guild-widget-object
export const WidgetModifySchema = {
enabled: Boolean, // whether the widget is enabled
channel_id: String // the widget channel id
};
export interface WidgetModifySchema {
enabled: boolean; // whether the widget is enabled
channel_id: string; // the widget channel id
}