Events

inkSignatures.update

Detailed viewer event reference for inkSignatures.update.

Summary

  • Category: Signatures
  • Event: inkSignatures.update
  • Trigger: Fires after ink signature presets are updated.

Payload

[ImmutableList<StoredSignature>];

Payload fields

Payload is not an object literal. Use the declaration above and runtime guards when handling this event.

Subscription example

function onEvent(payload) {
  console.log('inkSignatures.update', payload);
}

instance.addEventListener('inkSignatures.update', onEvent);
instance.removeEventListener('inkSignatures.update', onEvent);