diffusion
Version:
Diffusion JavaScript client
22 lines (21 loc) • 582 B
JavaScript
;
/**
* @module Services.SessionTrees
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.SessionTreeBranchList = void 0;
/**
* The response of the GET_SESSION_TREE_BRANCHES_WITH_MAPPINGS service
*/
var SessionTreeBranchList = /** @class */ (function () {
/**
* Create a new SessionTreeBranchList instance
*
* @param paths the source branches
*/
function SessionTreeBranchList(paths) {
this.paths = paths;
}
return SessionTreeBranchList;
}());
exports.SessionTreeBranchList = SessionTreeBranchList;