Genotype API Documentation - v0.1.0
    Preparing search index...

    Interface LineProcessingResult

    Line processing result for streaming text files Handles incomplete lines and buffer management

    interface LineProcessingResult {
        lines: string[];
        remainder: string;
        totalLines: number;
        isComplete: boolean;
    }
    Index

    Properties

    lines: string[]

    Complete lines extracted from buffer

    remainder: string

    Incomplete line remainder to carry forward

    totalLines: number

    Total lines processed so far

    isComplete: boolean

    Whether end of file was reached