global-exported-api.ts 378 B

12345678910111213
  1. // Copyright 2017-2020 @polkadot/apps authors & contributors
  2. // This software may be modified and distributed under the terms
  3. // of the Apache-2.0 license. See the LICENSE file for details.
  4. import { ElectronMainApi } from './electron-main-api';
  5. declare global {
  6. interface Window {
  7. ElectronMain: ElectronMainApi
  8. }
  9. }
  10. export const electronMainApi = window.ElectronMain;