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) • 569 B
text/typescript
import {defineLocaleResourceBundle} from 'sanity'
/**
* The locale namespace for the task tool
*
* @public
*/
export const tasksLocaleNamespace = 'tasks' as const
/**
* The default locale bundle for the task tool, which is US English.
*
* @internal
*/
export const tasksUsEnglishLocaleBundle = defineLocaleResourceBundle({
locale: 'en-US',
namespace: tasksLocaleNamespace,
resources: () => import('./resources'),
})
/**
* The locale resource keys for the task tool.
*
* @alpha
* @hidden
*/
export type {TasksLocaleResourceKeys} from './resources'