@o3r/localization
Version:
This module provides a runtime dynamic language/translation support and debug tools.
12 lines • 471 B
TypeScript
import type { RulesEngineAction } from '@o3r/core';
/** ActionUpdateLocalisationBlock */
export declare const RULES_ENGINE_LOCALISATION_UPDATE_ACTION_TYPE = "UPDATE_LOCALISATION";
/**
* Content of action that updates localization
*/
export interface ActionUpdateLocalisationBlock extends RulesEngineAction {
actionType: typeof RULES_ENGINE_LOCALISATION_UPDATE_ACTION_TYPE;
key: string;
value: string;
}
//# sourceMappingURL=localization.interfaces.d.ts.map