Variable defaultConst

default: {
    mkdirSync: ((path: PathLike, options?: MakeDirectoryOptions) => string);
    readdirSync: ((path: PathLike, callback: ((err: ErrnoException, results?: string[]) => any)) => void);
    rm: ((path: PathLike, options?: RmOptions | NoParamCallback, callback?: NoParamCallback) => void);
    rmdirSync: ((path: PathLike, options?: RmOptions) => void);
    write: ((path: PathLike, content: any) => Bluebird<string | Buffer | URL>);
} = ...

Type declaration