Represents a chunked file node with its chunks

interface ChunkedFileNode {
    chunks: FileChunk[];
    name: string;
    path: string;
    type: "file";
}

Properties

Properties

chunks: FileChunk[]
name: string
path: string
type: "file"