tauri-plugin-android-fs 28.2.1

Android file system API for Tauri.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

/// Icon type used for notification UI.
/// 
/// # TypeScript
///
/// ```ts
/// // NOTE: New variants may be added in the future
/// type ProgressNotificationIconType = "App" | "Download" | "Upload" | "Save";
/// ```
#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq, serde::Deserialize, serde::Serialize)]
#[non_exhaustive]
pub enum ProgressNotificationIcon {
    Download,
    Upload,
    Save,
    App,
}