Added protobufs for TS

This commit is contained in:
Niklas Jensen
2025-12-28 22:02:27 +01:00
committed by nikguin04
parent 9ceb7a9919
commit 8e66a03c00
10 changed files with 137 additions and 24 deletions
+6 -6
View File
@@ -1,8 +1,8 @@
declare module 'app-env' {
interface ENV {
VITE_USE_HOST_NAME: boolean
}
declare module "app-env" {
interface ENV {
VITE_USE_HOST_NAME: boolean;
}
const appEnv: ENV
export default appEnv
const appEnv: ENV;
export default appEnv;
}