* Synchronously write the contents of the array buffer (`p`) to the file. * * Returns the number of bytes written. * * **It is not guaranteed that the full buffer will be written in a single * call.** * * @example Usage * ```ts ignore * import { openSync } from "@std/fs/un
(p: Uint8Array)
| 566 | * ``` |
| 567 | */ |
| 568 | writeSync(p: Uint8Array): number; |
| 569 | } |
| 570 | |
| 571 | /** Options when setting TTY to raw mode. */ |
no outgoing calls
no test coverage detected