Interface Editor.IProofResult
A structure used by Editor.getProofImages() to store a return value.
Package: @aurigma/design-editor-iframe
Examples
// Getting links to proof images.
let links = await editor.getProofImages({maxHeight: 720, maxWidth: 720, pregeneratePreviewImages: true})
// If an error occurred while getting links to proof images.
.catch(error => console.error("Getting proof images failed with exception: ", error));
// When the links to proof images have been generated successfully, get them from the promise properties.
let proofImageUrls = links.proofImageUrls;
Properties
proofImageUrls
An array of temporary links to proof images.
Declaration
proofImageUrls: string[][];
Property Value
| Type | Description |
|---|---|
| string[][] | An array of temporary links to proof images. |