old-automod/lib/types/antispam/InfractionType.ts

10 lines
223 B
TypeScript

enum InfractionType {
// Infraction was created automatically by a moderation rule
Automatic = 0,
// Infraction was created manually by a moderator using /warn
Manual = 1,
}
export default InfractionType;