Files
2026-02-13 22:02:30 +01:00

13 lines
162 B
JavaScript

export class ReadStream {
fd;
isRaw = false;
isTTY = false;
constructor(fd) {
this.fd = fd;
}
setRawMode(mode) {
this.isRaw = mode;
return this;
}
}