UNPKG

@ayanaware/bentocord

Version:

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

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