UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

18 lines (14 loc) 505 B
// Generated by typings // Source: https://raw.githubusercontent.com/types/npm-mkdirp/198dc9b86004c5a4995ac28ee782c3391fb7ee56/index.d.ts declare module 'mkdirp' { function mkdirp (path: string, cb: (err: Error, made: string) => any): void; function mkdirp (path: string, opts: mkdirp.Opts, cb: (err: Error, made: string) => any): void; module mkdirp { export interface Opts { fs: any; mode: number; } export function sync (path: string, opts?: mkdirp.Opts): string; } export = mkdirp; }