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

15 lines (14 loc) 530 B
import { Sectors } from "../Sectors"; import { Header } from "../Header"; import "../Long"; import { FATtoDIFATFacade } from "./FATtoDIFATFacade"; export declare class DIFAT { private readonly sectors; private readonly header; private readonly faTtoDIFATFacade; private readonly difatSectors; constructor(sectors: Sectors, header: Header, faTtoDIFATFacade: FATtoDIFATFacade); readDifatSectors(): void; getFatSectorChain(): number[]; registerFATSector(sectorPosition: number): void; }