/** @packageDocumentation * @module OrbitGT */ declare type int32 = number; import { ALong } from "../runtime/ALong"; /** * Class FileRange defines a content range in a file. */ /** @internal */ export declare class FileRange { /** The (integer) offset of the content range */ offset: ALong; /** The size of the content range */ size: int32; /** * Create a new content range. */ constructor(offset: ALong, size: int32); } export {}; //# sourceMappingURL=FileRange.d.ts.map