XuqmGroup-H5SDK/node_modules/@rushstack/node-core-library/lib-dts/Constants.d.ts
徐勤民 e34fa2052a feat(private): add private deployment SDK module
Adds @xuqm/h5-sdk/private entry point with JSON-based initialization,
feature gating, and error codes for private deployment scenarios.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-18 21:08:08 +08:00

27 行
646 B
TypeScript

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