/[sudobot]/branches/4.x/src/events/role/RoleDeleteEvent.ts
ViewVC logotype

Contents of /branches/4.x/src/events/role/RoleDeleteEvent.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (show annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 411 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 import { Collection, Message, NonThreadGuildBasedChannel, Role } from "discord.js";
2 import DiscordClient from "../../client/Client";
3 import BaseEvent from "../../utils/structures/BaseEvent";
4
5 export default class RoleDeleteEvent extends BaseEvent {
6 constructor() {
7 super('roleDelete');
8 }
9
10 async run(client: DiscordClient, role: Role) {
11 await client.logger.onRoleDelete(role);
12 }
13 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26