solara-testing-beta
Version:
A modern, customizable, and lightweight Discord framework.
15 lines (14 loc) • 382 B
TypeScript
import { CommandData } from '../types';
export declare class Command implements CommandData {
name: string;
description?: string;
aliases?: string[];
category?: string;
code: string;
type?: 'message' | 'interaction' | 'both';
slash?: boolean;
options?: any[];
enabled?: boolean;
developerOnly?: boolean;
constructor(data: CommandData);
}