summary refs log tree commit diff
path: root/src/util/schemas/responses/GuildWidgetSettingsResponse.ts
blob: 3c6b45ce15c037314b1d422cd6941fa7883665eb (plain) (blame)
1
2
3
4
5
6
import { Snowflake } from "../../util";

export interface GuildWidgetSettingsResponse {
	enabled: boolean;
	channel_id: Snowflake | null;
}