Ability to Retrieve Parent Class from a Combo Class (in designer api)
I'm currently working with existing styles and using the isComboClass() method to determine whether a style is a combo class: const isCombo = await style.isComboClass();if (isCombo) { console.log('This style is a combo class');} However, while the...