signal-desktop/ts/context/index.ts

19 lines
420 B
TypeScript
Raw Normal View History

2021-06-22 07:46:42 -07:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { Bytes } from './Bytes';
2021-09-17 18:24:21 -04:00
import {
createNativeThemeListener,
MinimalIPC,
} from './createNativeThemeListener';
2021-06-22 07:46:42 -07:00
export class Context {
public readonly bytes = new Bytes();
public readonly nativeThemeListener;
constructor(ipc: MinimalIPC) {
2021-09-17 18:24:21 -04:00
this.nativeThemeListener = createNativeThemeListener(ipc, window);
}
2021-06-22 07:46:42 -07:00
}