27 lines
614 B
TypeScript
27 lines
614 B
TypeScript
|
/**
|
||
|
* String constants for common filenames and parts of filenames.
|
||
|
*
|
||
|
* @public
|
||
|
*/
|
||
|
export declare enum FileConstants {
|
||
|
/**
|
||
|
* "package.json" - the configuration file that defines an NPM package
|
||
|
*/
|
||
|
PackageJson = "package.json"
|
||
|
}
|
||
|
/**
|
||
|
* String constants for common folder names.
|
||
|
*
|
||
|
* @public
|
||
|
*/
|
||
|
export declare enum FolderConstants {
|
||
|
/**
|
||
|
* ".git" - the data storage for a Git working folder
|
||
|
*/
|
||
|
Git = ".git",
|
||
|
/**
|
||
|
* "node_modules" - the folder where package managers install their files
|
||
|
*/
|
||
|
NodeModules = "node_modules"
|
||
|
}
|
||
|
//# sourceMappingURL=Constants.d.ts.map
|