We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d650f8c commit 2b85251Copy full SHA for 2b85251
1 file changed
mod.ts
@@ -105,9 +105,13 @@ export enum Architecture {
105
* Interface for Tauri-specific information.
106
*/
107
export interface TauriInfo {
108
+ /** The application version, as defined in `tauri.conf.json`. */
109
version?: string;
110
+ /** The application name, as defined in `tauri.conf.json`. */
111
name?: string;
112
+ /** The application's bundle identifier, as defined in `tauri.conf.json`. */
113
identifier?: string;
114
+ /** The version of the underlying Tauri runtime. */
115
tauriVersion?: string;
116
}
117
0 commit comments