* Creates a new Form which you can * Accepts partial options to override any options passed to constructor.
(
optionOverrides: OverrideFeedbackConfiguration = {},
)
| 374 | * Accepts partial options to override any options passed to constructor. |
| 375 | */ |
| 376 | async createForm( |
| 377 | optionOverrides: OverrideFeedbackConfiguration = {}, |
| 378 | ): Promise<ReturnType<FeedbackModalIntegration['createDialog']>> { |
| 379 | return _loadAndRenderDialog(mergeOptions(_options, optionOverrides)); |
| 380 | }, |
| 381 | |
| 382 | /** |
| 383 | * Updates the color scheme of the feedback widget at runtime. |
nothing calls this directly
no test coverage detected