DigitalSigningEventMap Interface
DigitalSigningEventMap is an interface used to provide type-safe event listeners and is not instantiated or used directly. It maps event names to their corresponding event object types and is consumed by addEventListener to ensure correct typing of listener callbacks.
export declare interface DigitalSigningEventMap
Remarks
This interface defines the types of events that can be emitted during the digital signing process, including the initial signing request and the completion of the signing operation.
Fields
digitalSigning
Event emitted when the digital signing process is initiated.
digitalSigning: DigitalSigningEvent;
Field Value
Remarks
This event contains the PDF document data and optional appearance information before sending to the signing server.
digitallySigned
Event emitted when the digital signing process completes successfully.
digitallySigned: DigitallySignedEvent;
Field Value
Remarks
This event contains the signed PDF document data that can be loaded back into the viewer after successful signing.