This repository has been archived on 2023-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
beatsaber-overlay/src/consts/EnvVars.ts
2022-10-26 19:57:43 +01:00

18 lines
346 B
TypeScript

type Vars = {
HTTP_PROXY: string;
SITE_NAME: string;
SITE_TITLE: string;
SITE_DESCRIPTION: string;
SITE_COLOR: string;
SITE_URL: string;
};
export const VARS: Vars = {
HTTP_PROXY: "HTTP_PROXY",
SITE_NAME: "SITE_NAME",
SITE_TITLE: "SITE_TITLE",
SITE_DESCRIPTION: "SITE_DESCRIPTION",
SITE_COLOR: "SITE_COLOR",
SITE_URL: "SITE_URL",
};