mirror of https://github.com/zulip/zulip.git
dialog_widget: Fix 'onclick' event type.
This commit is contained in:
parent
a2a735273b
commit
40953f7ada
|
@ -61,7 +61,7 @@ function current_dialog_widget_selector(): string {
|
|||
export type DialogWidgetConfig = {
|
||||
html_heading: string;
|
||||
html_body: string;
|
||||
on_click: (e: unknown) => void;
|
||||
on_click: (e: JQuery.ClickEvent) => void;
|
||||
html_submit_button?: string;
|
||||
html_exit_button?: string;
|
||||
close_on_submit?: boolean;
|
||||
|
|
Loading…
Reference in New Issue