toolbar.items.typeString
Specifies the type of the button.
Example
<div id="imageEditor"></div>
<script>
$("#imageEditor").kendoImageEditor({
toolbar: {
items: [
{ type: "button", text: "Custom Tool", click: function() { console.log("Custom clicked"); } }
]
}
});
</script>