Base interface for all "After" event arguments. Indicates whether the operation completed successfully.

interface AfterEventArgs {
    errorMessage?: string;
    success: boolean;
}

Hierarchy (view full)

Properties

errorMessage?: string

Error message if the operation failed. Only populated when success is false.

success: boolean

Whether the operation completed successfully. Will be false if an error occurred during the operation.