mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 08:33:30 +01:00
12 lines
204 B
TypeScript
12 lines
204 B
TypeScript
import type { Type } from './index.js';
|
|
|
|
export interface Param {
|
|
defaultvalue?: string;
|
|
description: string;
|
|
name: string;
|
|
nullable?: boolean;
|
|
optional?: boolean;
|
|
type: Type;
|
|
variable?: string;
|
|
}
|