move ts session globals to global.d.ts

pull/691/head
Audric Ackermann 5 years ago
parent 1da1da80e9
commit 295e707101

@ -6,23 +6,6 @@ import { SessionInput } from './SessionInput';
import { SessionButton, SessionButtonTypes } from './SessionButton';
import { trigger } from '../../shims/events';
declare global {
interface Window {
getAccountManager: any;
mnemonic: any;
passwordUtil: any;
dcodeIO: any;
libsignal: any;
displayNameRegex: any;
Signal: any;
Whisper: any;
ConversationController: any;
setPassword: any;
}
}
declare var textsecure: any;
interface Props {
i18n: LocalizerType;
}
@ -115,7 +98,7 @@ export class RegistrationTabs extends React.Component<Props, State> {
this.accountManager = window.getAccountManager();
// Clean status in case the app closed unexpectedly
textsecure.storage.remove('secondaryDeviceStatus');
window.textsecure.storage.remove('secondaryDeviceStatus');
}
public render() {
@ -550,8 +533,8 @@ export class RegistrationTabs extends React.Component<Props, State> {
window.Whisper.Registration.remove();
// Do not remove all items since they are only set
// at startup.
textsecure.storage.remove('identityKey');
textsecure.storage.remove('secondaryDeviceStatus');
window.textsecure.storage.remove('identityKey');
window.textsecure.storage.remove('secondaryDeviceStatus');
window.ConversationController.reset();
await window.ConversationController.load();
window.Whisper.RotateSignedPreKeyListener.stop(window.Whisper.events);
@ -573,7 +556,7 @@ export class RegistrationTabs extends React.Component<Props, State> {
}
// Ensure we clear the secondary device registration status
textsecure.storage.remove('secondaryDeviceStatus');
window.textsecure.storage.remove('secondaryDeviceStatus');
try {
await this.resetRegistration();

13
ts/global.d.ts vendored

@ -0,0 +1,13 @@
interface Window {
getAccountManager: any;
mnemonic: any;
passwordUtil: any;
dcodeIO: any;
libsignal: any;
displayNameRegex: any;
Signal: any;
Whisper: any;
ConversationController: any;
setPassword: any;
textsecure: any;
}
Loading…
Cancel
Save