* **Optional**: Passes the following information to the callback: * * * Total number of bytes available on this file system. * * number of free bytes available on this file system. * * @todo This info is not available through the Node API. Perhaps we could do a * polyfill of disk
(p: string, cb: (total: number, free: number) => any)
| 75 | * useful for filesystems that support mount points. |
| 76 | */ |
| 77 | diskSpace(p: string, cb: (total: number, free: number) => any): void; |
| 78 | /** |
| 79 | * **Core**: Is this filesystem read-only? |
| 80 | * @return True if this FileSystem is inherently read-only. |
no outgoing calls
no test coverage detected