@oazmi/build-tools
Version:
general deno build tool scripts which I practically use in all of my typescript repos
9 lines • 385 B
TypeScript
import type { BufReader } from "./buf_reader.js";
/**
* Read big endian 16bit short 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 readShort(buf: BufReader): Promise<number | null>;
//# sourceMappingURL=read_short.d.ts.map