penguins-eggs
Version:
A remaster system tool, compatible with Arch, Debian, Devuan, Ubuntu and others
26 lines (25 loc) • 765 B
TypeScript
/**
* ./src/components/summary.tsx
* penguins-eggs v.10.0.0 / ecmascript 2020
* author: Piero Proietti
* email: piero.proietti@gmail.com
* license: MIT
*/
import React from 'react';
type SummaryProps = {
language?: string;
region?: string;
zone?: string;
keyboardModel?: string;
keyboardLayout?: string;
installationDevice?: string;
filesystemType?: string;
username?: string;
password?: string;
rootPassword?: string;
hostname?: string;
message?: string;
erase?: string;
};
export default function Summary({ username, password, rootPassword, hostname, region, zone, language, keyboardModel, keyboardLayout, installationDevice, filesystemType, message, erase }: SummaryProps): React.JSX.Element;
export {};