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
15 lines
310 B
TypeScript
15 lines
310 B
TypeScript
import { IMessageComposer } from '@nitrots/api';
|
|
|
|
export class WiredUserVariablesRequestComposer implements IMessageComposer<ConstructorParameters<typeof WiredUserVariablesRequestComposer>>
|
|
{
|
|
public getMessageArray()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public dispose(): void
|
|
{
|
|
return;
|
|
}
|
|
}
|