import { SejheyI18n } from '@sejhey/core-web';
import { getContext, setContext } from 'svelte';
const CONTEXT_KEY = Symbol('__sejhey_i18n');
export const setSejHeyContext = (d) => {
setContext(CONTEXT_KEY, d);
};
export function getSejHeyContext() {
return getContext(CONTEXT_KEY);
}