@jsverse/transloco-keys-manager
Version:
Extract translatable keys from projects that uses Transloco
9 lines (8 loc) • 310 B
TypeScript
import { BaseParams } from '../types';
interface AddKeysParams extends BaseParams {
scopeAlias: string | null;
keyWithoutScope: string;
params?: string[];
}
export declare function addKey({ defaultValue, scopeToKeys, scopeAlias, keyWithoutScope, scopes, params, }: AddKeysParams): void;
export {};