UNPKG

compound-binary-file-js

Version:

This is an implementation of [Compound Binary File v.3](https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-cfb/53989ce4-7b05-4f8d-829b-d08d6148375b) \ Allows reading existing files, creation of the/write operation

12 lines (11 loc) 368 B
import { DIFAT } from "./DIFAT"; import { FAT } from "./FAT"; export declare class FATtoDIFATFacade { private difat; private fat; setDifat(difat: DIFAT): void; setFat(fat: FAT): void; getFatSectorChain(): number[]; registerFatSectorInDIFAT(sectorPosition: number): void; registerDifatSectorInFAT(sectorPosition: number): void; }