jgb-cli
Version:
```shell npm i -g jgb-cli #全局安装 ```
71 lines (57 loc) • 1.18 kB
TypeScript
declare module '*.json' {
const value: any;
export default value;
export const version: string;
}
declare module 'fswatcher-child' {
class FSWatcher {
constructor(opts: any);
}
export = FSWatcher;
}
declare module 'is-glob' {
function isGlob(name: string): boolean;
export = isGlob;
namespace isGlob {
}
}
declare module 'user-home' {
const home: string;
export = home;
}
declare module 'download-git-repo' {
function downloadRepo(
templateName: string,
dist: string,
opts: any,
cb: (err: any) => void
): void;
export = downloadRepo;
namespace downloadRepo {
}
}
declare module 'tildify' {
function tildify(res: string): string;
export = tildify;
namespace tildify {
}
}
declare module 'read-metadata' {
export function sync(json: string): any;
}
declare module 'validate-npm-package-name' {
function validateName(name: string): any;
export = validateName;
}
declare module 'rimraf' {
function rimraf(f: string, options?: any, cb?: any): any;
export = rimraf;
namespace rimraf {
}
}
interface IPipelineProcessed {
id: string;
dependencies: any[];
hash: string;
cacheData?: any;
}