Port to Vue3 and TypeScript

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2025-05-01 13:25:11 +02:00
parent b447417d0f
commit e572d2f545
No known key found for this signature in database
33 changed files with 2297 additions and 5930 deletions

14
src/global.d.ts vendored Normal file
View file

@ -0,0 +1,14 @@
export { }
declare global {
interface Window {
getTheme: () => string;
getThemeFromStorage: () => string;
maxSecretExpire: number;
OTSCustomize: any;
refreshTheme: () => void;
setTheme: (string) => void;
useFormalLanguage: boolean;
version: string;
}
}