@astrolicious/i18n
Version:
Yet another i18n integration for Astro with server and client utilities, type safety and translations built-in.
9 lines (6 loc) • 301 B
TypeScript
import { AstroIntegrationLogger } from 'astro';
import { Options } from '../options.js';
import 'sitemap';
import 'astro/zod';
declare const getResources: (logger: AstroIntegrationLogger, { locales }: Options, localesDir: string) => Record<string, Record<string, unknown>>;
export { getResources };