@scoutello/i18n-magic
Version:
Intelligent CLI toolkit that automates internationalization workflows with AI-powered translations for JavaScript/TypeScript projects
20 lines • 605 B
TypeScript
import type { Configuration } from "../lib/types";
export interface PruneOptions {
sourceNamespace: string;
newNamespace: string;
globPatterns: string[];
}
export interface PruneResult {
locale: string;
keyCount: number;
success: boolean;
error?: string;
}
export interface PruneResponse {
success: boolean;
message: string;
keysCount: number;
results?: PruneResult[];
}
export declare const createPrunedNamespaceAutomated: (config: Configuration, options: PruneOptions) => Promise<PruneResponse>;
//# sourceMappingURL=create-pruned-namespace-automated.d.ts.map