UNPKG

@ayanaware/bentocord

Version:

Bentocord is a Bento plugin designed to rapidly build fully functional Discord Bots.

7 lines (6 loc) 266 B
import type { Entity, InstanceType } from '@ayanaware/bento'; import type { CommandManager } from '../../CommandManager'; import type { Command } from '../Command'; export interface CommandEntity extends Entity, Command { parent: InstanceType<CommandManager>; }