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) 602 B
import {defineLocaleResourceBundle} from 'sanity' /** * The locale namespace for the comments plugin * * @public */ export const commentsLocaleNamespace = 'comments' as const /** * The default locale bundle for the comments plugin, which is US English. * * @internal */ export const commentsUsEnglishLocaleBundle = defineLocaleResourceBundle({ locale: 'en-US', namespace: commentsLocaleNamespace, resources: () => import('./resources'), }) /** * The locale resource keys for the comments plugin. * * @alpha * @hidden */ export type {CommentsLocaleResourceKeys} from './resources'