ManagedReference.overwrite.js 442 B

12345678910
  1. // Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.
  2. var common = require('./ManagedReference.common.js');
  3. exports.getOptions = function (model) {
  4. var ignoreChildrenBookmarks = model._splitReference && model.type && common.getCategory(model.type) === 'ns';
  5. return {
  6. "bookmarks": common.getBookmarks(model, ignoreChildrenBookmarks)
  7. };
  8. }