feat(react/settings): port backup DB list

This commit is contained in:
Elian Doran
2025-08-15 13:11:44 +03:00
parent 6f19fde76e
commit 25dce64c3b
3 changed files with 65 additions and 5 deletions

View File

@@ -101,3 +101,9 @@ export interface PostTokensResponse {
export interface BackupDatabaseNowResponse {
backupFile: string;
}
export interface DatabaseBackup {
fileName: string;
filePath: string;
mtime: Date;
}