Gets the element’s type.
Possible values include:
“text”
“image”
readonly type: string
import { editor, elements } from "@wix/editor";
import { createClient } from "@wix/sdk";
const client = createClient({
host: editor.host(),
modules: { elements },
});
async function getSelectedElementProp(propName) {
const [myElement] = await client.elements.getSelection();
const elementType = myElement.type;
}