/** * Arguments for `ConfigurableItemUtils.applyLanguageKeyValue()`. */ export interface ApplyLanguageKeyArgs { /** * The language key. */ key: string; /** * The ID of the parent item. Used as part of generating the language key if * needed. */ parentId: string; /** * The name of the property. Used as part of generating the language key if * needed. */ propertyName: string; /** * The language key value to apply. */ value: string; }