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