UNPKG

@shelchin/svelte-i18n

Version:

The last Svelte i18n library you'll ever need. Type-safe, AI-powered, zero-config.

14 lines (13 loc) 329 B
#!/usr/bin/env node /** * Validate translation files * Checks for missing keys, type mismatches, and consistency */ interface ValidateOptions { translationsDir: string; baseLocale?: string; strict?: boolean; namespace?: string; } export declare function validate(options: ValidateOptions): boolean; export {};