Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
13 lines
677 B
Plaintext
13 lines
677 B
Plaintext
/**
|
|
* Server-only APIs available via `next-intl/server`.
|
|
*/
|
|
export { default as getRequestConfig, type GetRequestConfigParams, type RequestConfig } from './getRequestConfig.js';
|
|
export { default as getFormatter } from './getFormatter.js';
|
|
export { default as getNow } from './getNow.js';
|
|
export { default as getTimeZone } from './getTimeZone.js';
|
|
export { default as getTranslations } from './getTranslations.js';
|
|
export { default as getExtracted } from './getExtracted.js';
|
|
export { default as getMessages } from './getMessages.js';
|
|
export { default as getLocale } from './getLocale.js';
|
|
export { setCachedRequestLocale as setRequestLocale } from './RequestLocaleCache.js';
|