git-autoshelve
Version:
TFS-like autoshelving for GIT repository
22 lines • 573 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Setting = void 0;
class Setting {
constructor(setting) {
this.setting = setting;
}
get repositoryBasePath() {
return this.setting.repositoryBasePath;
}
get autoshelveRepositoryPath() {
return this.setting.autoshelveRepositoryPath;
}
get git() {
return this.setting.git;
}
get originGit() {
return this.setting.originGit;
}
}
exports.Setting = Setting;
//# sourceMappingURL=Setting.js.map