11 lines
239 B
TypeScript
11 lines
239 B
TypeScript
import type { BackupTargetFS } from './BackupTargetFS';
|
|
export type RecoverySource<Password> = {
|
|
type: 'migrate';
|
|
guid: string;
|
|
} | {
|
|
type: 'backup';
|
|
target: BackupTargetFS;
|
|
password: Password;
|
|
serverId: string;
|
|
};
|