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
13 lines (12 loc) • 517 B
TypeScript
import { Header } from "../Header";
import { Sectors } from "../Sectors";
import { FATtoDIFATFacade } from "./FATtoDIFATFacade";
import { AllocationTable } from "./AllocationTable";
import { Sector } from "../dataview/Sector";
export declare class FAT extends AllocationTable {
private readonly header;
private readonly difat;
constructor(sectors: Sectors, header: Header, difat: FATtoDIFATFacade);
registerDifatSector(position: number): void;
protected allocateNewSector(): Sector;
}