@itwin/presentation-common
Version:
Common pieces for iModel.js presentation packages
15 lines • 664 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
*/
/**
* Checks if supplied request options are for single or multiple element properties.
* @internal
*/
export function isSingleElementPropertiesRequestOptions(options) {
return options.elementId !== undefined;
}
//# sourceMappingURL=PresentationManagerOptions.js.map