penguins-eggs
Version:
A remaster system tool, compatible with Arch, Debian, Devuan, Ubuntu and others
19 lines (18 loc) • 609 B
TypeScript
/**
* ./src/components/partitions.tsx
* penguins-eggs v.10.0.0 / ecmascript 2020
* author: Piero Proietti
* email: piero.proietti@gmail.com
* license: MIT
*/
import React from 'react';
import { SwapChoice } from '../classes/krill_enums.js';
type partitionsProps = {
installationDevice?: string;
installationMode?: string;
filesystemType?: string;
userSwapChoice?: SwapChoice;
replacedPartition?: string;
};
export default function Partitions({ installationDevice, installationMode, filesystemType, userSwapChoice, replacedPartition }: partitionsProps): React.JSX.Element;
export {};