Nutrient Web SDK

v0.0.0-dev

ReferenceEventsStoredSignatureCreateEvent

Type Alias StoredSignatureCreateEvent

This event is emitted when a new signature is created and stored.

Type Alias
Type Signature
type StoredSignatureCreateEvent =
    | NutrientViewer.Annotations.InkAnnotation
    | NutrientViewer.Annotations.ImageAnnotation

Example

Get the new signature.

instance.addEventListener("storedSignatures.create", (signature: StoredSignatureCreateEvent) => {
console.log(signature.toJS());
});

See Also