Files
recap/node_modules/@start9labs/start-sdk/base/lib/osBindings/SetupExecuteParams.d.ts
T

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;
};