Files
discord.js/packages/docgen/src/interfaces/param.interface.ts
2022-09-01 20:50:16 +02:00

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;
}