(path: string, options?: { followSymlinks?: boolean })
| 80 | } |
| 81 | |
| 82 | export function stat(path: string, options?: { followSymlinks?: boolean }): Promise<StatResult> { |
| 83 | return getCurrentKaos().stat(path, options); |
| 84 | } |
| 85 | |
| 86 | export function mkdir( |
| 87 | path: string, |