Urara-Blog/.svelte-kit/runtime/client/singletons.js
2022-08-14 01:14:53 +08:00

13 lines
197 B
JavaScript

/** @type {import('./types').Client} */
let client;
/**
* @param {{
* client: import('./types').Client;
* }} opts
*/
function init(opts) {
client = opts.client;
}
export { client, init };