You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.7 KiB
TypeScript
89 lines
2.7 KiB
TypeScript
import {} from 'styled-components/cssprop';
|
|
|
|
import { LocalizerType } from '../types/Util';
|
|
import { LibsignalProtocol } from '../../libtextsecure/libsignal-protocol';
|
|
import { SignalInterface } from '../../js/modules/signal';
|
|
|
|
import { LibTextsecure } from '../libtextsecure';
|
|
import { ConfirmationDialogParams } from '../background';
|
|
|
|
import { Store } from 'redux';
|
|
import { DefaultTheme } from 'styled-components';
|
|
|
|
import { ConversationCollection, ConversationModel } from './models/conversation';
|
|
import { ConversationType } from './state/ducks/conversations';
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
|
|
type UtilWorkerFunctionType = (fnName: string, ...args: any) => Promise<any>;
|
|
|
|
declare global {
|
|
interface Window {
|
|
CONSTANTS: any;
|
|
Events: any;
|
|
Lodash: any;
|
|
LokiSnodeAPI: any;
|
|
Session: any;
|
|
Signal: SignalInterface;
|
|
StubAppDotNetApi: any;
|
|
StringView: any;
|
|
StubMessageAPI: any;
|
|
Whisper: any;
|
|
clearLocalData: any;
|
|
clipboard: any;
|
|
dcodeIO: any;
|
|
displayNameRegex: any;
|
|
friends: any;
|
|
getConversations: any;
|
|
getFriendsFromContacts: any;
|
|
getSettingValue: any;
|
|
i18n: LocalizerType;
|
|
libsignal: LibsignalProtocol;
|
|
log: any;
|
|
lokiFeatureFlags: {
|
|
useOnionRequests: boolean;
|
|
useFileOnionRequests: boolean;
|
|
useFileOnionRequestsV2: boolean;
|
|
padOutgoingAttachments: boolean;
|
|
enablePinConversations: boolean;
|
|
};
|
|
lokiSnodeAPI: LokiSnodeAPI;
|
|
onLogin: any;
|
|
persistStore?: Persistor;
|
|
resetDatabase: any;
|
|
restart: any;
|
|
getSeedNodeList: () => Array<any> | undefined;
|
|
setPassword: any;
|
|
setSettingValue: any;
|
|
storage: any;
|
|
textsecure: LibTextsecure;
|
|
toggleMediaPermissions: any;
|
|
toggleMenuBar: any;
|
|
toggleSpellCheck: any;
|
|
setTheme: (newTheme: string) => any;
|
|
isDev?: () => boolean;
|
|
userConfig: any;
|
|
versionInfo: any;
|
|
getConversations: () => ConversationCollection;
|
|
profileImages: any;
|
|
MediaRecorder: any;
|
|
dataURLToBlobSync: any;
|
|
autoOrientImage: (fileOrBlobOrURL: string | File | Blob, options: any = {}) => Promise<string>;
|
|
contextMenuShown: boolean;
|
|
inboxStore?: Store;
|
|
openConversationWithMessages: (args: {
|
|
conversationKey: string;
|
|
messageId?: string | undefined;
|
|
}) => Promise<void>;
|
|
LokiPushNotificationServer: any;
|
|
getGlobalOnlineStatus: () => boolean;
|
|
confirmationDialog: any;
|
|
callWorker: (fnName: string, ...args: any) => Promise<any>;
|
|
setStartInTray: (val: boolean) => Promise<void>;
|
|
getStartInTray: () => Promise<boolean>;
|
|
}
|
|
}
|