/* eslint-disable class-methods-use-this */ import { Container } from "./container.js" import type { ComponentInteraction } from "./interaction" import type { MessageOptions } from "./message" export abstract class Node { readonly children = new Container>() constructor(public props: Props) {} modifyMessageOptions(options: MessageOptions) {} handleComponentInteraction(interaction: ComponentInteraction): boolean { return false } }