UNPKG

universal-fs

Version:

Allows a client or server to access the file system in the current codebase or a different one.

8 lines (7 loc) 185 B
export interface MkdirParams { path: PathLike; options: MakeDirectoryOptions & { recursive: true; } & Abortable; } export type MkdirReturn = Promise<string | void>;