SAS logoSAS® Mobile Investigator API
    Preparing search index...

    Interface SolutionLocalizationBundle

    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>;
    }
    Index

    Properties

    Properties

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