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