UNPKG

diffusion

Version:

Diffusion JavaScript client

22 lines (21 loc) 582 B
"use strict"; /** * @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;