// eslint-disable-next-line import/no-unresolved import {} from 'styled-components/cssprop'; import { Store } from '@reduxjs/toolkit'; import { Persistor } from 'redux-persist/es/types'; import { LocalizerType } from './types/Util'; import { ConversationCollection } from './models/conversation'; import { PrimaryColorStateType, ThemeStateType } from './themes/constants/colors'; export interface LibTextsecure { messaging: boolean; } /* We declare window stuff here instead of global.d.ts because we are importing other declarations. If you import anything in global.d.ts, the type system won't work correctly. */ declare global { interface Window { Events: any; Session: any; Whisper: any; clearLocalData: () => Promise; clipboard: any; getSettingValue: (id: string, comparisonValue?: any) => any; setSettingValue: (id: string, value: any) => Promise; i18n: LocalizerType; log: any; sessionFeatureFlags: { useOnionRequests: boolean; useTestNet: boolean; useClosedGroupV3: boolean; integrationTestEnv: boolean; debug: { debugLogging: boolean; debugLibsessionDumps: boolean; debugFileServerRequests: boolean; debugNonSnodeRequests: boolean; debugOnionRequests: boolean; }; }; onLogin: (pw: string) => Promise; persistStore?: Persistor; restart: () => void; getSeedNodeList: () => Array | undefined; setPassword: (newPassword: string | null, oldPassword: string | null) => Promise; isOnline: boolean; toggleMediaPermissions: () => Promise; toggleCallMediaPermissionsTo: (enabled: boolean) => Promise; getCallMediaPermissions: () => boolean; toggleMenuBar: () => void; toggleSpellCheck: () => void; primaryColor: PrimaryColorStateType; theme: ThemeStateType; setTheme: (newTheme: string) => Promise; userConfig: any; versionInfo: any; getConversations: () => ConversationCollection; readyForUpdates: () => void; drawAttention: () => void; MediaRecorder: any; platform: string; openFromNotification: (convoId: string) => void; getEnvironment: () => string; getNodeVersion: () => string; showWindow: () => void; setCallMediaPermissions: (val: boolean) => void; setMediaPermissions: (val: boolean) => void; askForMediaAccess: () => void; getMediaPermissions: () => boolean; nodeSetImmediate: any; globalOnlineStatus: boolean; getTitle: () => string; getAppInstance: () => string; getCommitHash: () => string | undefined; getVersion: () => string; getOSRelease: () => string; saveLog: (text: string) => void; setAutoHideMenuBar: (val: boolean) => void; setMenuBarVisibility: (val: boolean) => void; contextMenuShown: boolean; inboxStore?: Store; openConversationWithMessages: (args: { conversationKey: string; messageId: string | null; }) => Promise; LokiPushNotificationServer: any; getGlobalOnlineStatus: () => boolean; confirmationDialog: any; setStartInTray: (val: boolean) => Promise; getStartInTray: () => Promise; getOpengroupPruning: () => Promise; setOpengroupPruning: (val: boolean) => Promise; closeAbout: () => void; getAutoUpdateEnabled: () => boolean; setAutoUpdateEnabled: (enabled: boolean) => void; setZoomFactor: (newZoom: number) => void; updateZoomFactor: () => void; Signal: any; } }