mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-02-27 21:25:31 +00:00
12 lines
315 B
TypeScript
12 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);
|