Source code for redditwarp.models.widget.text_area_ASYNC


from __future__ import annotations

from dataclasses import dataclass

from .widget_ASYNC import Widget

[docs]@dataclass(repr=False, eq=False) class TextAreaWidget(Widget): text: str text_html: str