8 lines
166 B
TypeScript
8 lines
166 B
TypeScript
import type { Version } from './Version';
|
|
export type PackageBackupInfo = {
|
|
title: string;
|
|
version: Version;
|
|
osVersion: string;
|
|
timestamp: string;
|
|
};
|