UNPKG

@itwin/core-common

Version:

iTwin.js components common to frontend and backend

19 lines 858 B
/*--------------------------------------------------------------------------------------------- * 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 */ /** Get IPC channel name used for reporting progress of pulling changes into iModel. * @internal */ export const getPullChangesIpcChannel = (iModelId) => `${ipcAppChannels.functions}/pullChanges/${iModelId}`; /** @internal */ export const ipcAppChannels = { functions: "itwinjs-core/ipc-app", appNotify: "itwinjs-core/ipcApp-notify", txns: "itwinjs-core/txns", editingScope: "itwinjs-core/editing-scope", }; //# sourceMappingURL=IpcAppProps.js.map