@itwin/presentation-common
Version:
Common pieces for iModel.js presentation packages
18 lines • 825 B
JavaScript
;
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
/** @packageDocumentation
* @module Core
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.isSingleElementPropertiesRequestOptions = isSingleElementPropertiesRequestOptions;
/**
* Checks if supplied request options are for single or multiple element properties.
* @internal
*/
function isSingleElementPropertiesRequestOptions(options) {
return options.elementId !== undefined;
}
//# sourceMappingURL=PresentationManagerOptions.js.map