Interface Editor.IUnchangedItems
A structure used by Editor.getUnchangedItems() to store a return value.
Package: @aurigma/design-editor-iframe
Examples
const unchangedItems = await editor.getUnchangedItems();
// When unchanged items have been obtained successfully.
if (unchangedItems.items.length > 0) {
unchangedItems.items.forEach(function (logItems) {
console.log(logItems);
});
}
else
{
console.log("There are no unchanged items");
}
Properties
items
An array of unchanged items.
Declaration
items: {
name: string;
surface: number;
}[];
Property Value
| Type | Description |
|---|---|
| { name: string; surface: number; }[] | An array of unchanged items. |