13 lines
236 B
TypeScript
13 lines
236 B
TypeScript
|
export interface IDrive {
|
||
|
device: string;
|
||
|
description: string;
|
||
|
size: number;
|
||
|
mountpoints: IMountpoint[];
|
||
|
raw: string;
|
||
|
protected: boolean;
|
||
|
system: boolean;
|
||
|
}
|
||
|
export interface IMountpoint {
|
||
|
path: string;
|
||
|
}
|