(p: string, cb: (total: number, free: number) => any)
| 37 | } |
| 38 | |
| 39 | public diskSpace(p: string, cb: (total: number, free: number) => any): void { |
| 40 | // FIXME: should this lock? |
| 41 | this._fs.diskSpace(p, cb); |
| 42 | } |
| 43 | |
| 44 | public isReadOnly(): boolean { |
| 45 | return this._fs.isReadOnly(); |