Documentation
    Preparing search index...

    Interface IntentResult

    The result of an intent invocation.

    interface IntentResult {
        action: string;
        archetype: string;
        error?: string;
        handled: boolean;
        handler?: string;
        ok: boolean;
        protocol?: string;
        windowId?: string;
    }
    Index

    Properties

    action: string

    The resolved action (defaults to "open" when the request omits it).

    archetype: string

    The requested archetype, echoed back.

    error?: string

    Error reason when the intent could not be fulfilled.

    handled: boolean

    True when a handler accepted the dispatch.

    handler?: string

    dTag of the napplet that handled the intent, when one did.

    ok: boolean

    Whether the intent was dispatched successfully.

    protocol?: string

    The wire format actually used to deliver payload.

    windowId?: string

    Window id the handler was created or focused in.