10 lines
310 B
TypeScript
10 lines
310 B
TypeScript
import type { PackageBackupReport } from './PackageBackupReport';
|
|
import type { PackageId } from './PackageId';
|
|
import type { ServerBackupReport } from './ServerBackupReport';
|
|
export type BackupReport = {
|
|
server: ServerBackupReport;
|
|
packages: {
|
|
[key: PackageId]: PackageBackupReport;
|
|
};
|
|
};
|