9 lines
233 B
TypeScript
9 lines
233 B
TypeScript
import type { ServerHostname } from './ServerHostname';
|
|
export type StartOsRecoveryInfo = {
|
|
hostname: ServerHostname;
|
|
version: string;
|
|
timestamp: string;
|
|
passwordHash: string | null;
|
|
wrappedKey: string | null;
|
|
};
|