impasto
    Preparing search index...

    Interface SplitSectionResultSegment

    A segment of the section split result, either the section content lines, or the context lines before or after it.

    interface SplitSectionResultSegment {
        endLine: number;
        lines: LineElement[];
        startLine: number;
    }
    Index

    Properties

    endLine: number

    The end line number of the segment.

    Note: Line numbers are 1-based.

    lines: LineElement[]

    The lines that are part of the segment.

    startLine: number

    The start line number of the segment.

    Note: Line numbers are 1-based.