Files
nashboard-old/.svelte-kit/runtime/client/singletons.js
Vincent Liao 18f00434e1 to sveltekit
2022-03-21 13:03:54 +07:00

14 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 };