/** @packageDocumentation * @module OrbitGT */ declare type int32 = number; /** * Class InStream defines a stream of bytes to read from. */ /** @internal */ export declare class InStream { /** * Create a new stream. */ constructor(); /** * Read the next byte (range 0..255, or -1 at the end of the stream). */ read(): int32; /** * Close the stream */ close(): void; } export {}; //# sourceMappingURL=InStream.d.ts.map