Nutrient Web SDK

ReferenceEventsAnnotationsDidSaveEvent

Type Alias AnnotationsDidSaveEvent

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

Type Alias
Type Signature
type AnnotationsDidSaveEvent = void

Example

Get the list of saved annotations.

instance.addEventListener("annotations.didSave", (annotations: AnnotationsDidSaveEvent) => {
console.log("Annotations were saved");
});

See Also