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) • 428 B
TypeScript
import { AllocationTable } from "./AllocationTable";
import { Sector } from "../dataview/Sector";
import { FAT } from "./FAT";
import { Header } from "../Header";
import { Sectors } from "../Sectors";
export declare class MiniFAT extends AllocationTable {
private readonly header;
private readonly fat;
constructor(sectors: Sectors, header: Header, fat: FAT);
protected allocateNewSector(): Sector;
}