@itwin/core-common
Version:
iTwin.js components common to frontend and backend
23 lines • 1.07 kB
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 Views
*/
/**
* Access to a ViewStore from the frontend.
* @beta
*/
export var ViewStoreRpc;
(function (ViewStoreRpc) {
/**
* Version of the Rpc interface. If any methods or interfaces of this API change, this number should
* be incremented according to the rules of semantic versioning. See .\rpc\README-RpcInterfaceVersioning.md for more information.
* @internal
*/
ViewStoreRpc.version = "4.0.0";
/** Determine if a string is an Id of an entry in a ViewStore (base-36 integer with a leading "@") */
ViewStoreRpc.isViewStoreId = (id) => true === id?.startsWith("@");
})(ViewStoreRpc || (ViewStoreRpc = {}));
//# sourceMappingURL=ViewProps.js.map