diff --git a/discord/component.go b/discord/component.go index 743ebd9..85249dd 100644 --- a/discord/component.go +++ b/discord/component.go @@ -74,6 +74,7 @@ func (c *ContainerComponents) UnmarshalJSON(b []byte) error { // - *ActionRowComponent // - *ButtonComponent // - *SelectComponent +// - *TextInputComponent // type Component interface { // Type returns the type of the underlying component. @@ -89,6 +90,7 @@ type Component interface { // // - *ButtonComponent // - *SelectComponent +// - *TextInputComponent // type InteractiveComponent interface { Component