penguins-eggs
Version:
A remaster system tool, compatible with Arch, Debian, Devuan, Ubuntu and others
34 lines (33 loc) • 710 B
TypeScript
/**
* ./src/interfaces/i-drive-list.ts
* penguins-eggs v.10.0.0 / ecmascript 2020
* author: Piero Proietti
* email: piero.proietti@gmail.com
* license: MIT
*/
interface IMountPoint {
path: string;
}
export interface IDriveList {
blockSize: number;
busType: string;
busVersion: string;
description: string;
device: string;
devicePath: string;
enumerator: string;
error: boolean;
isCard: boolean;
isReadOnly: boolean;
isRemovable: boolean;
isSCSI: boolean;
isSystem: boolean;
isUAS: boolean;
isUSB: boolean;
isVirtual: boolean;
logicalBlockSize: number;
mountpoints: IMountPoint[];
raw: string;
size: number;
}
export {};