feat: re-export Url (#8474)

* feat: re-exoprt `Url`

`Url` is used/returned from public API, we should re-export it

* Update .changes/export-url.md
This commit is contained in:
Amr Bashir 2023-12-27 17:59:26 +02:00 committed by GitHub
parent 883e52153e
commit 6e48837860
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

5
.changes/export-url.md Normal file
View File

@ -0,0 +1,5 @@
---
'tauri': 'patch:feat'
---
Re-export `Url` type.

View File

@ -176,6 +176,8 @@ pub use error::Error;
pub use regex;
pub use tauri_macros::{command, generate_handler};
pub use url::Url;
pub mod api;
pub(crate) mod app;
pub mod async_runtime;