zibri
    Preparing search index...

    Definition for a line in a file. Contains its index, as well as its content.

    type FileLine = {
        content: string;
        index: number;
    }
    Index

    Properties

    Properties

    content: string

    The content of the line.

    index: number

    The index of the line inside the file lines.