// file: crates/ksp-app-config-desk/frontend/ts/splash.ts // version: 1 import { getCurrentWindow } from "@tauri-apps/api/window"; document.addEventListener("DOMContentLoaded", () => { const status = document.querySelector("#splash-status"); if (status) { status.textContent = `Frontend chargé dans la fenêtre '${getCurrentWindow().label}'. Lifecycle complet prévu en pre.008.`; } });