old-automod/lib/types/LogConfig.ts

13 lines
278 B
TypeScript

export default class LogConfig {
revolt?: {
channel?: string,
// EMBED uses Revolt's embeds.
// PLAIN is like QUOTEBLOCK but without the quotes.
type?: 'EMBED'|'QUOTEBLOCK'|'PLAIN';
}
discord?: {
webhookUrl?: string,
}
}