Rust backend: SQLite (WAL mode, 8 tables), vault encryption (Argon2id + AES-256-GCM), settings/connections/credentials services, 19 Tauri command wrappers. 46/46 tests passing. Vue 3 frontend: unlock/create vault flow, Pinia app store, Tailwind CSS v4 dark theme with Wraith branding. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
/**
|
|
* The Tauri API allows you to interface with the backend layer.
|
|
*
|
|
* This module exposes all other modules as an object where the key is the module name, and the value is the module exports.
|
|
* @example
|
|
* ```typescript
|
|
* import { event, window, path } from '@tauri-apps/api'
|
|
* ```
|
|
*
|
|
* ### Vanilla JS API
|
|
*
|
|
* The above import syntax is for JavaScript/TypeScript with a bundler. If you're using vanilla JavaScript, you can use the global `window.__TAURI__` object instead. It requires `app.withGlobalTauri` configuration option enabled.
|
|
*
|
|
* @example
|
|
* ```js
|
|
* const { event, window: tauriWindow, path } = window.__TAURI__;
|
|
* ```
|
|
*
|
|
* @module
|
|
*/
|
|
import * as app from './app';
|
|
import * as core from './core';
|
|
import * as dpi from './dpi';
|
|
import * as event from './event';
|
|
import * as image from './image';
|
|
import * as menu from './menu';
|
|
import * as mocks from './mocks';
|
|
import * as path from './path';
|
|
import * as tray from './tray';
|
|
import * as webview from './webview';
|
|
import * as webviewWindow from './webviewWindow';
|
|
import * as window from './window';
|
|
export { app, core, dpi, event, image, menu, mocks, path, tray, webview, webviewWindow, window };
|