tauri-app: added tauri-app template
Some checks failed
record-daemon / Build, check and test (push) Failing after 51s

This commit is contained in:
2026-03-22 11:36:18 +01:00
parent 6ac2fe9cd3
commit 6c07e043d4
39 changed files with 7506 additions and 0 deletions

7
tauri-app/src/vite-env.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
/// <reference types="vite/client" />
declare module "*.vue" {
import type { DefineComponent } from "vue";
const component: DefineComponent<{}, {}, any>;
export default component;
}