Interface PendingAttention

What the host is waiting for at this moment, as reported on the host-attention channel (R3-307). Present on a PendingState only while the host IS prompting.

interface PendingAttention {
    kind: null | HostAttentionKind;
    since: null | number;
}

Properties

Properties

kind: null | HostAttentionKind

The kind of prompt on screen, or null when the host reports a wait it cannot name.

since: null | number

Date.now() when the wait began, or null.