Donations: Finish wiring up the 3ds validation flow

This commit is contained in:
Scott Nonnenberg
2025-07-11 03:13:32 +10:00
committed by GitHub
parent 9ee1680ce7
commit 470cd1624d
6 changed files with 26 additions and 6 deletions

2
ts/window.d.ts vendored
View File

@@ -21,6 +21,7 @@ import type {
import type AccountManager from './textsecure/AccountManager';
import type { WebAPIConnectType } from './textsecure/WebAPI';
import type { CallingClass } from './services/calling';
import type * as Donations from './services/donations';
import type * as StorageService from './services/storage';
import type { BackupsService } from './services/backups';
import type * as Groups from './groups';
@@ -164,6 +165,7 @@ export type SignalCoreType = {
lightSessionResetQueue?: PQueue;
retryPlaceholders?: RetryPlaceholders;
storage: typeof StorageService;
donations: typeof Donations;
};
SettingsWindowProps?: SettingsWindowPropsType;
Migrations: ReturnType<typeof initializeMigrations>;