UNPKG

dbf-reader

Version:

A Node.js/Typescript module to read tabular data from the dBase DB (.dbf) file.

13 lines (12 loc) 277 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class DataTable { constructor() { this.columns = new Array(); this.rows = new Array(); } } exports.DataTable = DataTable; class Column { } exports.Column = Column;