* Write the contents of the array buffer (`p`) to the file. * * Resolves to 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 { open } from "@std/fs/unstable-open";
(p: Uint8Array)
| 548 | * ``` |
| 549 | */ |
| 550 | write(p: Uint8Array): Promise<number>; |
| 551 | /** |
| 552 | * Synchronously write the contents of the array buffer (`p`) to the file. |
| 553 | * |
no outgoing calls
no test coverage detected