2021-06-22 14:46:42 +00:00
|
|
|
// Copyright 2021 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import { Bytes } from './Bytes';
|
2021-06-30 18:57:43 +00:00
|
|
|
import { NativeThemeListener, MinimalIPC } from './NativeThemeListener';
|
2021-06-22 14:46:42 +00:00
|
|
|
|
|
|
|
export class Context {
|
|
|
|
public readonly bytes = new Bytes();
|
2021-06-30 18:57:43 +00:00
|
|
|
|
|
|
|
public readonly nativeThemeListener;
|
|
|
|
|
|
|
|
constructor(ipc: MinimalIPC) {
|
|
|
|
this.nativeThemeListener = new NativeThemeListener(ipc, window);
|
|
|
|
}
|
2021-06-22 14:46:42 +00:00
|
|
|
}
|