Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DiskPartition

import type { DiskPartition } from "https://googleapis.deno.dev/v1/migrationcenter:v1.ts";

Disk Partition details.

interface DiskPartition {
capacityBytes?: bigint;
fileSystem?: string;
freeBytes?: bigint;
mountPoint?: string;
subPartitions?: DiskPartitionList;
type?: string;
uuid?: string;
}

§Properties

§
capacityBytes?: bigint
[src]

Partition capacity.

§
fileSystem?: string
[src]

Partition file system.

§
freeBytes?: bigint
[src]

Partition free space.

§
mountPoint?: string
[src]

Mount pount (Linux/Windows) or drive letter (Windows).

§
subPartitions?: DiskPartitionList
[src]

Sub-partitions.

§
type?: string
[src]

Partition type.

§
uuid?: string
[src]

Partition UUID.