UNPKG

@scoutello/i18n-magic

Version:

Intelligent CLI toolkit that automates internationalization workflows for JavaScript/TypeScript projects and auto-translates new string keys to other languages

15 lines 501 B
import type { Configuration } from "../lib/types.js"; export interface UnusedKeysReport { totalKeys: number; unusedCount: number; unusedKeys: Array<{ key: string; namespace: string; locales: string[]; }>; } export declare const findUnusedKeys: (config: Configuration) => Promise<UnusedKeysReport>; export declare const removeUnusedKeys: (config: Configuration, options?: { skipConfirmation?: boolean; }) => Promise<void>; //# sourceMappingURL=clean.d.ts.map