/** @packageDocumentation * @module OrbitGT */ import { ABuffer } from "../buffer/ABuffer"; import { ALong } from "../runtime/ALong"; /** * Class FileContent holds partial content (a single range) of a file. */ /** @internal */ export declare class FileContent { /** The (integer) offset of the content range */ offset: ALong; /** The content */ content: ABuffer; /** * Create a new content holder. */ constructor(offset: ALong, content: ABuffer); } //# sourceMappingURL=FileContent.d.ts.map