6 lines
174 B
TypeScript
6 lines
174 B
TypeScript
|
import { MessageEmbed } from "discord.js";
|
||
|
import { ICommandContext } from "./ICommandContext";
|
||
|
|
||
|
export default interface ICommandReturnContext {
|
||
|
embeds: MessageEmbed[]
|
||
|
}
|