Documentation
    Preparing search index...

    Interface IntentResult

    The result of an intent invocation.

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

    Properties

    action: string

    Dispatched action.

    archetype: string

    Requested archetype.

    convention?: string

    Convention used for payload delivery.

    error?: string

    Failure reason.

    handled: boolean

    Whether a handler accepted the dispatch.

    handler?: string

    dTag of the handling napplet.

    ok: boolean

    Whether dispatch completed.

    windowId?: string

    Runtime-assigned target window identifier.