Stores localized strings by key.

{
* bykey: {
* "colours.red.label": "rouge",
* "colours.blue.label": "bleu"
* },
* byValue: {
* "red": "rouge",
* "blue": "bleu"
* }
* }
interface SolutionLocalizationBundle {
    byKey: Record<string, string>;
    byValue: Record<string, string>;
}

Properties

Properties

byKey: Record<string, string>
byValue: Record<string, string>