Represents a chunk of text from a file with its original position

interface FileChunk {
    content: string;
    endChar: number;
    endLine: number;
    filePath: string;
    startChar: number;
    startLine: number;
}

Hierarchy (view full)

Properties

content: string
endChar: number
endLine: number
filePath: string
startChar: number
startLine: number