Skip to content

Commit 2b85251

Browse files
committed
doc the TauriInfo interface
1 parent d650f8c commit 2b85251

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

mod.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,13 @@ export enum Architecture {
105105
* Interface for Tauri-specific information.
106106
*/
107107
export interface TauriInfo {
108+
/** The application version, as defined in `tauri.conf.json`. */
108109
version?: string;
110+
/** The application name, as defined in `tauri.conf.json`. */
109111
name?: string;
112+
/** The application's bundle identifier, as defined in `tauri.conf.json`. */
110113
identifier?: string;
114+
/** The version of the underlying Tauri runtime. */
111115
tauriVersion?: string;
112116
}
113117

0 commit comments

Comments
 (0)