Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ConcatPosition

import type { ConcatPosition } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

A position that encapsulates an inner position and an index for the inner position. A ConcatPosition can be used by a reader of a source that encapsulates a set of other sources.

interface ConcatPosition {
index?: number;
position?: Position;
}

§Properties

§
index?: number
[src]

Index of the inner source.

§
position?: Position
[src]

Position within the inner source.