@jsverse/transloco-keys-manager
Version:
Extract translatable keys from projects that uses Transloco
13 lines (12 loc) • 375 B
TypeScript
import { TranslocoGlobalConfig } from '@jsverse/transloco-utils';
import { ScopeMap, Config } from '../types';
type Params = {
translationPath: string;
scopeToKeys: ScopeMap;
config: Config & TranslocoGlobalConfig;
};
/**
* In use in the Webpack Plugin
*/
export declare function generateKeys({ translationPath, scopeToKeys, config }: Params): void;
export {};