(
custom_widget: TPlainWidget,
)
| 1809 | } |
| 1810 | |
| 1811 | addCustomWidget<TPlainWidget extends IBaseWidget>( |
| 1812 | custom_widget: TPlainWidget, |
| 1813 | ): TPlainWidget | WidgetTypeMap[TPlainWidget["type"]] { |
| 1814 | this.widgets ||= [] |
| 1815 | const widget = toConcreteWidget(custom_widget, this, false) ?? custom_widget |
| 1816 | this.widgets.push(widget) |
| 1817 | return widget |
| 1818 | } |
| 1819 | |
| 1820 | addTitleButton(options: LGraphButtonOptions): LGraphButton { |
| 1821 | this.title_buttons ||= [] |
no test coverage detected