@jsverse/transloco-keys-manager
Version:
Extract translatable keys from projects that uses Transloco
11 lines (10 loc) • 455 B
TypeScript
import { Config } from './types';
export declare function setConfig(_config: Config): void;
export declare function getConfig(): Config;
export type ProjectType = 'application' | 'library';
interface Options {
projectType?: ProjectType;
sourceRoot?: string;
}
export declare function defaultConfig({ projectType, sourceRoot, }?: Options): Omit<Config, 'config' | 'project' | 'scopes' | 'scopePathMap' | 'unflat' | 'command' | 'files'>;
export {};