Abstract base interface for all inputs to the pipeline. Currently only implemented by CSVInput.

interface Input {
    getColumns(): Record<string, InputColumn>;
    getRows(): TemplatedInputRow<ColumnSpec>[];
}

Implemented by

Methods

  • Returns Record<string, InputColumn>

Generated using TypeDoc