From 7c59e3785b3b72c8cb155b3b39ec08832e851bc7 Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Tue, 19 Dec 2023 14:35:53 +0100 Subject: [PATCH] feat(dialog): Re-export FileResponse (#837) closes #835 --- .changes/dialog-export-fileresponse.md | 5 +++++ plugins/dialog/guest-js/index.ts | 1 + 2 files changed, 6 insertions(+) create mode 100644 .changes/dialog-export-fileresponse.md diff --git a/.changes/dialog-export-fileresponse.md b/.changes/dialog-export-fileresponse.md new file mode 100644 index 00000000..23ccc4da --- /dev/null +++ b/.changes/dialog-export-fileresponse.md @@ -0,0 +1,5 @@ +--- +"dialog": patch +--- + +Re-export `FileResponse` interface. diff --git a/plugins/dialog/guest-js/index.ts b/plugins/dialog/guest-js/index.ts index b0e01240..d2392dc3 100644 --- a/plugins/dialog/guest-js/index.ts +++ b/plugins/dialog/guest-js/index.ts @@ -296,6 +296,7 @@ async function confirm( export type { DialogFilter, + FileResponse, OpenDialogOptions, SaveDialogOptions, MessageDialogOptions,