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