13 lines
269 B
TypeScript
13 lines
269 B
TypeScript
|
import "typings-global";
|
||
|
export declare class ProjectinfoNpm {
|
||
|
packageJson: any;
|
||
|
name: string;
|
||
|
version: string;
|
||
|
status: string;
|
||
|
license: string;
|
||
|
git: any;
|
||
|
constructor(cwdArg: string, optionsArg?: {
|
||
|
gitAccessToken?: string;
|
||
|
});
|
||
|
}
|