Member Junction
    Preparing search index...

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

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

    Hierarchy (View Summary)

    Index

    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.