import type { Locale } from './types' export class LocaleCustom { localeCustom: Locale | null = null constructor() {} setLocale(locale: Locale) { this.localeCustom = locale } getLocale() { return this.localeCustom } } export const defaultLocalizedString = () => ({ en: '', fr: '', }) as unknown as Record