UNPKG

@itwin/core-common

Version:

iTwin.js components common to frontend and backend

26 lines 1.19 kB
"use strict"; /*--------------------------------------------------------------------------------------------- * 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 */ Object.defineProperty(exports, "__esModule", { value: true }); exports.ViewStoreRpc = void 0; /** * Access to a ViewStore from the frontend. * @beta */ 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 || (exports.ViewStoreRpc = ViewStoreRpc = {})); //# sourceMappingURL=ViewProps.js.map