Stream of typed DXF group-code/value pairs.

Comment pairs (code 999) are filtered — neither peek nor next returns them. Implementations must not materialize the whole file as a string[] of lines.

interface AcDbDxfPairReader {
    kind: "binary" | "ascii";
    next(): undefined | AcDbDxfPair;
    peek(): undefined | AcDbDxfPair;
    position(): { byteOffset: number; line?: number };
}

Properties

Methods

Properties

kind: "binary" | "ascii"

Methods