interfaces2.js 606 B

12345678910111213141516
  1. /*!
  2. * All material copyright ESRI, All Rights Reserved, unless otherwise specified.
  3. * See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
  4. * v1.0.0-beta.97
  5. */
  6. var TreeSelectionMode;
  7. (function (TreeSelectionMode) {
  8. TreeSelectionMode["Single"] = "single";
  9. TreeSelectionMode["Multi"] = "multi";
  10. TreeSelectionMode["None"] = "none";
  11. TreeSelectionMode["Children"] = "children";
  12. TreeSelectionMode["MultiChildren"] = "multi-children";
  13. TreeSelectionMode["Ancestors"] = "ancestors";
  14. })(TreeSelectionMode || (TreeSelectionMode = {}));
  15. export { TreeSelectionMode as T };