Nutrient Web SDK

v0.0.0-dev

ReferenceEventsAnnotationsWillSaveEvent

Type Alias AnnotationsWillSaveEvent

This event is emitted when annotations are saved. The event includes the list of saved annotations.

Type Alias
Type Signature
type AnnotationsWillSaveEvent = void

Example

Get the list of saved annotations.

instance.addEventListener("annotations.willSave", (annotations: AnnotationsWillSaveEvent) => {
console.log("Annotations will be saved");
});

See Also