mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 08:39:29 +08:00
9 lines
199 B
Text
9 lines
199 B
Text
/** @type {App.PublicEnv} */
|
|
let env = {};
|
|
|
|
/** @type {(environment: Record<string, string>) => void} */
|
|
function set_public_env(environment) {
|
|
env = environment;
|
|
}
|
|
|
|
export { env, set_public_env };
|