@intlayer/config
Version:
Retrieve Intlayer configurations and manage environment variables for both server-side and client-side environments.
11 lines (10 loc) • 443 B
TypeScript
import { StrictMode } from "@intlayer/types/config";
import { Locale } from "@intlayer/types/allLocales";
//#region src/defaultValues/internationalization.d.ts
declare const LOCALES: Locale[];
declare const REQUIRED_LOCALES: Locale[];
declare const DEFAULT_LOCALE: Locale;
declare const STRICT_MODE: StrictMode;
//#endregion
export { DEFAULT_LOCALE, LOCALES, REQUIRED_LOCALES, STRICT_MODE };
//# sourceMappingURL=internationalization.d.ts.map