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