FileSystem
export type FileSystem = {
mkdirSync(
path: string,
options?: {recursive: boolean}
): void
writeFileSync(
path: string,
content: string
): void
}
export type FileSystem = {
mkdirSync(
path: string,
options?: {recursive: boolean}
): void
writeFileSync(
path: string,
content: string
): void
}