11 lines
334 B
TypeScript
11 lines
334 B
TypeScript
import type { EncryptedWire } from './EncryptedWire';
|
|
import type { RecoverySource } from './RecoverySource';
|
|
export type SetupExecuteParams = {
|
|
guid: string;
|
|
password: EncryptedWire | null;
|
|
recoverySource: RecoverySource<EncryptedWire> | null;
|
|
kiosk: boolean;
|
|
name: string | null;
|
|
hostname: string | null;
|
|
};
|