You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-19 15:06:20 +00:00
22 lines
449 B
TypeScript
22 lines
449 B
TypeScript
import { IMessageComposer } from '@nitrots/api';
|
|
|
|
export class DeleteMentionComposer implements IMessageComposer<ConstructorParameters<typeof DeleteMentionComposer>>
|
|
{
|
|
private _data: ConstructorParameters<typeof DeleteMentionComposer>;
|
|
|
|
constructor(mentionId: number)
|
|
{
|
|
this._data = [mentionId];
|
|
}
|
|
|
|
public getMessageArray()
|
|
{
|
|
return this._data;
|
|
}
|
|
|
|
public dispose(): void
|
|
{
|
|
return;
|
|
}
|
|
}
|