UNPKG

@oazmi/build-tools

Version:

general deno build tool scripts which I practically use in all of my typescript repos

9 lines 383 B
import type { BufReader } from "./buf_reader.js"; /** * Read big endian 32bit integer from BufReader * @param buf * * @deprecated (will be removed after 1.0.0) Use the {@link https://developer.mozilla.org/en-US/docs/Web/API/Streams_API | Web Streams API} instead. */ export declare function readInt(buf: BufReader): Promise<number | null>; //# sourceMappingURL=read_int.d.ts.map