@electric-sql/d2mini
Version:
D2Mini is a minimal implementation of Differential Dataflow for performing in-memory incremental view maintenance.
14 lines (13 loc) • 442 B
TypeScript
import { IStreamBuilder, PipedOperator } from '../types.js';
import { BinaryOperator } from '../graph.js';
/**
* Operator that concatenates two input streams
*/
export declare class ConcatOperator<T, T2> extends BinaryOperator<T | T2> {
run(): void;
}
/**
* Concatenates two input streams
* @param other - The other stream to concatenate
*/
export declare function concat<T, T2>(other: IStreamBuilder<T2>): PipedOperator<T, T | T2>;