Log query stats during backup import

This commit is contained in:
trevor-signal 2024-10-28 13:11:19 -04:00 committed by GitHub
parent 251ffc289f
commit f5a170818b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 44 additions and 10 deletions

3
ts/window.d.ts vendored
View file

@ -52,6 +52,7 @@ import type { initializeMigrations } from './signal';
import type { RetryPlaceholders } from './util/retryPlaceholders';
import type { PropsPreloadType as PreferencesPropsType } from './components/Preferences';
import type { WindowsNotificationData } from './services/notifications';
import type { QueryStatsOptions } from './sql/main';
export { Long } from 'long';
@ -87,6 +88,8 @@ export type IPCType = {
showWindow: () => void;
showWindowsNotification: (data: WindowsNotificationData) => Promise<void>;
shutdown: () => void;
startTrackingQueryStats: () => void;
stopTrackingQueryStats: (options?: QueryStatsOptions) => void;
titleBarDoubleClick: () => void;
updateTrayIcon: (count: number) => void;
};