Options for exiting the external app. The result signal is used by the gallery to determine navigation.

interface ExitOptions {
    data?: Record<string, unknown>;
    result?: string;
}

Properties

Properties

data?: Record<string, unknown>

Optional data to pass to the next slide.

result?: string

Result signal for gallery to determine next action. Common values: 'success', 'error', 'retry', 'skip' Custom string values are also supported.