Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
317 Bytes
import { Locale } from '../../../locale/config.js'
export const LOCALE_INITIALIZE = 'LOCALE_INITIALIZE'
export type InitializeLocaleResponse = {
type: typeof LOCALE_INITIALIZE;
data: Locale;
}
export const initializeLocale = (data: Locale): InitializeLocaleResponse => ({
type: LOCALE_INITIALIZE,
data,
})