UNPKG

nufatfs

Version:

A new async-friendly library for accessing FAT16 and FAT32 filesystems

11 lines 418 B
import { ChainLink } from "./chained-structures"; import { LowLevelFatFilesystem } from "./low-level"; export declare class ClusterChainLink implements ChainLink { private fat; index: number; length: number; constructor(fat: LowLevelFatFilesystem, index: number, length: number); read(): Promise<Uint8Array>; write(data: Uint8Array): Promise<void>; } //# sourceMappingURL=cluster-chain.d.ts.map