mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-20 02:08:57 +00:00
40 lines
979 B
TypeScript
40 lines
979 B
TypeScript
// Copyright 2018 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
// The idea with this file is to make it webpackable for the style guide
|
|
|
|
import OS from './util/os/osMain.node.js';
|
|
import { isProduction } from './util/version.std.js';
|
|
import { DataReader, DataWriter } from './sql/Client.preload.js';
|
|
|
|
// Processes / Services
|
|
import { calling } from './services/calling.preload.js';
|
|
import * as storage from './services/storage.preload.js';
|
|
import { backupsService } from './services/backups/index.preload.js';
|
|
import * as donations from './services/donations.preload.js';
|
|
|
|
import type { SignalCoreType } from './window.d.ts';
|
|
|
|
export const setup = (): SignalCoreType => {
|
|
// Only for testing
|
|
const Services = {
|
|
storage,
|
|
calling,
|
|
donations,
|
|
backups: backupsService,
|
|
};
|
|
|
|
return {
|
|
OS,
|
|
|
|
...(isProduction(window.getVersion())
|
|
? {}
|
|
: {
|
|
Services,
|
|
|
|
DataReader,
|
|
DataWriter,
|
|
}),
|
|
};
|
|
};
|