SongGuess
    Preparing search index...
    interface Pipeline<T extends PipelineRecord = PipelineRecord> {
        send(records: T[]): Promise<void>;
    }

    Type Parameters

    Index

    Methods

    Methods

    • The Pipeline interface represents the type of a binding to a Pipeline

      Parameters

      • records: T[]

        The records to send to the pipeline

      Returns Promise<void>