UNPKG

@comunica/types

Version:

Typings module for Comunica

13 lines (12 loc) 352 B
import type * as RDF from '@rdfjs/types'; import type { AsyncIterator } from 'asynciterator'; /** * An immutable solution mapping object. * This maps variables to a terms. */ export type Bindings = RDF.Bindings; /** * A stream of bindings. * @see Bindings */ export type BindingsStream = AsyncIterator<RDF.Bindings> & RDF.ResultStream<Bindings>;