nufatfs
Version:
A new async-friendly library for accessing FAT16 and FAT32 filesystems
8 lines • 423 B
TypeScript
import type { Driver } from "./types";
export declare function getLEUint32(data: Uint8Array, offset?: number): number;
export declare function getNthPartitionFromMBR(mbrSector: Uint8Array, n: number): {
firstLBA: number;
sectorCount: number;
};
export declare function createMBRPartitionDriver(rootDriver: Driver, partition: number, mbrSector?: Uint8Array): Promise<Driver>;
//# sourceMappingURL=mbr-driver.d.ts.map