split up embed file

This commit is contained in:
MapleLeaf
2021-12-25 04:06:56 -06:00
parent 6747f7bdaf
commit c74f8df231
6 changed files with 120 additions and 105 deletions

View File

@@ -0,0 +1,6 @@
import type { MessageEmbedOptions } from "discord.js"
import { Node } from "../node.js"
export abstract class EmbedChildNode<Props> extends Node<Props> {
abstract modifyEmbedOptions(options: MessageEmbedOptions): void
}