Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

IOutputStream

interface IOutputStream {
writeByte(byte: number): void;
writeBytes(bytes: number[]): void;
}

§Methods

§
writeByte(byte: number): void
[src]
§
writeBytes(bytes: number[]): void
[src]