Interface HonuaCompiledInteractionsExperimental

interface HonuaCompiledInteractions {
    bindings: readonly HonuaCompiledInteractionBinding[];
    disabled: readonly string[];
    issues: readonly HonuaInteractionIssue[];
    ok: boolean;
    unsupported: readonly HonuaUnsupportedInteraction[];
    dispose(): void;
}

Properties

bindings: readonly HonuaCompiledInteractionBinding[]
disabled: readonly string[]

Interaction ids skipped because disabled: true.

issues: readonly HonuaInteractionIssue[]

Validation failures. When non-empty, nothing was bound.

ok: boolean

True when the block validated and every non-disabled binding compiled.

unsupported: readonly HonuaUnsupportedInteraction[]

Methods