@itwin/core-common
Version:
iTwin.js components common to frontend and backend
23 lines • 1.06 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 NativeApp
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ipcAppChannels = exports.getPullChangesIpcChannel = void 0;
/** Get IPC channel name used for reporting progress of pulling changes into iModel.
* @internal
*/
const getPullChangesIpcChannel = (iModelId) => `${exports.ipcAppChannels.functions}/pullChanges/${iModelId}`;
exports.getPullChangesIpcChannel = getPullChangesIpcChannel;
/** @internal */
exports.ipcAppChannels = {
functions: "itwinjs-core/ipc-app",
appNotify: "itwinjs-core/ipcApp-notify",
txns: "itwinjs-core/txns",
editingScope: "itwinjs-core/editing-scope",
};
//# sourceMappingURL=IpcAppProps.js.map