UNPKG

mdb-reader

Version:

JavaScript library to read data from Access databases

8 lines (7 loc) 472 B
import type { Column } from "../column.js"; import { Database } from "../Database.js"; /** * @see https://github.com/brianb/mdbtools/blob/d6f5745d949f37db969d5f424e69b54f0da60b9b/src/libmdb/data.c#L626-L688 * @see https://github.com/spannm/jackcess/blob/4c433a4ae4969ff5658556806a35ccb13cc35313/src/main/java/io/github/spannm/jackcess/impl/LongValueColumnImpl.java#L130-L209 */ export declare function readOLE(buffer: Buffer, _col: Column, database: Database): Buffer;