UNPKG

@electric-sql/d2ts

Version:

D2TS is a TypeScript implementation of Differential Dataflow.

14 lines (13 loc) 374 B
import { PipedOperator } from '../types.js'; import { UnaryOperator } from '../graph.js'; /** * Operator that consolidates collections at each version */ export declare class ConsolidateOperator<T> extends UnaryOperator<T> { #private; run(): void; } /** * Consolidates the elements in the stream */ export declare function consolidate<T>(): PipedOperator<T, T>;