Interface ProtocolModuleQueryBinding

Type binding for one module's query seam.

The compiler source identity is deliberately separate from SourceDescriptor: deterministic compilers receive a credential-free, serializable identity rather than a runtime descriptor or client. The execution query may carry runtime-only values such as an AbortSignal; those values never enter the compiled artifact.

interface ProtocolModuleQueryBinding {
    compiled: unknown;
    compileQuery: unknown;
    executeQuery: unknown;
    source: unknown;
}

Hierarchy (view full)

Properties

compiled: unknown
compileQuery: unknown
executeQuery: unknown
source: unknown