Brand Refresh

This commit is contained in:
Jamie Kyle 2024-11-05 18:05:24 -08:00 committed by GitHub
parent b88100d32a
commit b97e67121f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
181 changed files with 828 additions and 131 deletions

6
ts/window.d.ts vendored
View file

@ -27,7 +27,7 @@ import type * as Crypto from './Crypto';
import type * as Curve from './Curve';
import type * as RemoteConfig from './RemoteConfig';
import type { OSType } from './util/os/shared';
import type { LocalizerType, ThemeType } from './types/Util';
import type { LocalizerType, SystemThemeType, ThemeType } from './types/Util';
import type { Receipt } from './types/Receipt';
import type { ConversationController } from './ConversationController';
import type { ReduxActions } from './state/types';
@ -104,8 +104,8 @@ export type FeatureFlagType = {
};
type AboutWindowPropsType = {
appEnv: string;
arch: string;
environmentText: string;
platform: string;
};
@ -224,7 +224,7 @@ declare global {
sendChallengeRequest: (request: IPCChallengeRequest) => void;
showKeyboardShortcuts: () => void;
storage: Storage;
systemTheme: ThemeType;
systemTheme: SystemThemeType;
Signal: SignalCoreType;