Riksdagsmonitor Intelligence Platform โ€” API Documentation - v1.0.30
    Preparing search index...

    Interface PipelineStage<TInput, TOutput>

    A single pipeline stage: takes an input and produces a typed result. Stages are composable โ€” the output of one stage feeds the next.

    interface PipelineStage<TInput, TOutput> {
    ย ย ย ย name: string;
    ย ย ย ย execute(input: TInput): PipelineResult<TOutput>;
    }

    Type Parameters

    • TInput
    • TOutput
    Index
    name: string