Universal Robots TypeScript API - v10.12.0
    Preparing search index...

    Type Alias TranslatedProgramLabelPart

    Contains one part of a translated program label. A part consist of a type (primary or secondary), translationKey, and optional interpolateParams (values inserted into the label)

    type TranslatedProgramLabelPart = {
        interpolateParams?: Record<string, string>;
        translationKey: string;
        type: ProgramLabelPartType;
    }
    Index

    Properties

    interpolateParams?: Record<string, string>
    translationKey: string