mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 21:13:09 +00:00
6 lines
178 B
TypeScript
6 lines
178 B
TypeScript
import { DiskInfo } from '../types/api'
|
|
|
|
export function toGuid(disk: DiskInfo | null): string | null {
|
|
return disk?.guid || disk?.partitions.find(p => p.guid)?.guid || null
|
|
}
|