signal-desktop/ts/windows/loading/preload.ts
2021-09-17 18:12:58 -04:00

11 lines
315 B
TypeScript

// Copyright 2020-2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { contextBridge } from 'electron';
// It is important to call this as early as possible
import '../context';
import { SignalWindow } from '../configure';
contextBridge.exposeInMainWorld('SignalWindow', SignalWindow);