@jsverse/transloco-keys-manager
Version:
Extract translatable keys from projects that uses Transloco
7 lines (6 loc) • 391 B
TypeScript
import { Config, ScopeMap } from '../types';
interface CompareKeysOptions extends Pick<Config, 'unflat' | 'fileFormat' | 'addMissingKeys' | 'emitErrorOnExtraKeys' | 'translationsPath'> {
scopeToKeys: ScopeMap;
}
export declare function compareKeysToFiles({ scopeToKeys, translationsPath, addMissingKeys, emitErrorOnExtraKeys, fileFormat, unflat, }: CompareKeysOptions): void;
export {};