smartdrive/ts/smartdrive.interfaces.ts

16 lines
263 B
TypeScript
Raw Permalink Normal View History

2017-06-08 23:24:19 +00:00
import * as plugins from './smartdrive.plugins'
export interface IDrive {
device: string
description: string
size: number,
mountpoints: IMountpoint[]
raw: string
protected: boolean
system: boolean
}
export interface IMountpoint {
path: string
}