2022-01-04 14:56:01 +01:00
|
|
|
export default class LogConfig {
|
|
|
|
revolt?: {
|
|
|
|
channel?: string,
|
|
|
|
|
2022-05-22 17:47:22 +02:00
|
|
|
// EMBED uses Revolt's embeds.
|
2022-01-04 14:56:01 +01:00
|
|
|
// PLAIN is like QUOTEBLOCK but without the quotes.
|
2022-05-22 17:47:22 +02:00
|
|
|
type?: 'EMBED'|'QUOTEBLOCK'|'PLAIN';
|
2022-01-04 14:56:01 +01:00
|
|
|
}
|
|
|
|
discord?: {
|
|
|
|
webhookUrl?: string,
|
|
|
|
}
|
|
|
|
}
|