UNPKG

sanity

Version:

Sanity is a real-time content infrastructure with a scalable, hosted backend featuring a Graph Oriented Query Language (GROQ), asset pipelines and fast edge caches

28 lines (24 loc) 619 B
import {type LocaleResourceBundle} from '../../i18n' /** * The locale namespace for the Create integration plugin * * @public */ export const createLocaleNamespace = 'create' as const /** * The default locale bundle for the Create integration plugin, which is US English. * * @internal */ export const createUsEnglishLocaleBundle: LocaleResourceBundle = { locale: 'en-US', namespace: createLocaleNamespace, resources: () => import('./resources'), } /** * The locale resource keys for the Create integration plugin. * * @alpha * @hidden */ export type {CreateLocaleResourceKeys} from './resources'