projectinfo/dist/projectinfo.classes.projectinfo.d.ts

16 lines
475 B
TypeScript
Raw Normal View History

2016-11-26 13:45:56 +00:00
import { ProjectinfoNpm } from './projectinfo.classes.npm';
2016-11-26 22:18:33 +00:00
import { ProjectinfoGit } from './projectinfo.classes.git';
2016-11-26 13:45:56 +00:00
export declare type TProjectType = 'git' | 'npm';
/**
* class projectinfo automatically examines a given directory and exposes relevant info about it
*/
export declare class ProjectInfo {
type: TProjectType;
npm: ProjectinfoNpm;
2016-11-26 22:18:33 +00:00
git: ProjectinfoGit;
2016-11-26 13:45:56 +00:00
/**
2016-11-26 22:18:33 +00:00
* constructor of class ProjectInfo
2016-11-26 13:45:56 +00:00
*/
constructor(cwdArg: string);
}