Interface ProtocolModuleQueryCompileInput<TSource, TQuery>

Pure input to a protocol module's deterministic compiler.

interface ProtocolModuleQueryCompileInput<TSource, TQuery> {
    operation: ProtocolModuleQueryOperation;
    query: TQuery;
    source: TSource;
}

Type Parameters

  • TSource = unknown
  • TQuery = unknown

Properties

query: TQuery
source: TSource